about summary refs log tree commit diff
path: root/db/migrate/20190927232842_add_voters_count_to_polls.rb
blob: 84638570090e28302133f2827c89d8039e966424 (plain) (blame)
1
2
3
4
5
class AddVotersCountToPolls < ActiveRecord::Migration[5.2]
  def change
    add_column :polls, :voters_count, :bigint
  end
end