20190927232842_add_voters_count_to_polls.rb 128 B

12345
  1. class AddVotersCountToPolls < ActiveRecord::Migration[5.2]
  2. def change
  3. add_column :polls, :voters_count, :bigint
  4. end
  5. end