diff options
Diffstat (limited to 'db/migrate/20190927232842_add_voters_count_to_polls.rb')
-rw-r--r-- | db/migrate/20190927232842_add_voters_count_to_polls.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20190927232842_add_voters_count_to_polls.rb b/db/migrate/20190927232842_add_voters_count_to_polls.rb new file mode 100644 index 000000000..846385700 --- /dev/null +++ b/db/migrate/20190927232842_add_voters_count_to_polls.rb @@ -0,0 +1,5 @@ +class AddVotersCountToPolls < ActiveRecord::Migration[5.2] + def change + add_column :polls, :voters_count, :bigint + end +end |