blob: a0849d3a555ec72b5086c7b11b257f72af488ea5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
class CreatePollVotes < ActiveRecord::Migration[5.2]
def change
create_table :poll_votes do |t|
t.belongs_to :account, foreign_key: { on_delete: :cascade }
t.belongs_to :poll, foreign_key: { on_delete: :cascade }
t.integer :choice, null: false, default: 0
t.timestamps
end
end
end
|