Files
nairobi/db/migrate/20160928113143_create_officing_booths.rb
2016-11-14 13:58:00 +01:00

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