Files
nairobi/db/migrate/20180621182723_create_poll_ballot_sheets.rb
2019-04-10 16:04:39 +02:00

11 lines
270 B
Ruby

class CreatePollBallotSheets < ActiveRecord::Migration
def change
create_table :poll_ballot_sheets do |t|
t.text :data
t.integer :poll_id, index: true
t.integer :officer_assignment_id, index: true
t.timestamps null: false
end
end
end