docbrown/db/migrate/20190525233918_create_poll_options.rb
Ben Halpern 8ae057b06e
Beta polls feature (admin use only for now) (#3176)
* Initial poll features

* Add basic poll functionality

* Finish (maybe) beta poll functionality
2019-06-15 17:33:30 -04:00

12 lines
323 B
Ruby

class CreatePollOptions < ActiveRecord::Migration[5.2]
def change
create_table :poll_options do |t|
t.bigint :poll_id
t.string :markdown
t.string :processed_html
t.boolean :counts_in_tabulation
t.integer :poll_votes_count, null: false, default: 0
t.timestamps
end
end
end