Files
grecia/db/migrate/20161130123347_create_poll_booth_assignments.rb
2016-12-01 13:02:03 +01:00

10 lines
220 B
Ruby

class CreatePollBoothAssignments < ActiveRecord::Migration
def change
create_table :poll_booth_assignments do |t|
t.integer :booth_id
t.integer :poll_id
t.timestamps null: false
end
end
end