adds poll/booth_assigments

This commit is contained in:
Juanjo Bazán
2016-11-30 13:46:05 +01:00
parent 9583c052f0
commit bd59ba3b82
5 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
class CreatePollBoothAssignments < ActiveRecord::Migration
def change
create_table :poll_booth_assignments do |t|
t.integer :booth_id
t.integer :poll_id
t.timestamps null: false
end
end
end