10 lines
215 B
Ruby
10 lines
215 B
Ruby
class CreateOfficingBooths < ActiveRecord::Migration
|
|
def change
|
|
create_table :poll_officing_booths do |t|
|
|
t.belongs_to :officer
|
|
t.belongs_to :booth
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|