10 lines
220 B
Ruby
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
|