assigns officers to booths

This commit is contained in:
rgarcia
2016-09-28 18:39:01 +02:00
parent 6387d28157
commit 527b734e0e
10 changed files with 185 additions and 27 deletions

View File

@@ -0,0 +1,9 @@
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