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