Files
nairobi/db/migrate/20161206131125_create_poll_officer_assignments.rb

10 lines
238 B
Ruby

class CreatePollOfficerAssignments < ActiveRecord::Migration
def change
create_table :poll_officer_assignments do |t|
t.integer :booth_assignment_id
t.integer :officer_id
t.timestamps null: false
end
end
end