Files
nairobi/db/migrate/20160914172535_create_poll_booths.rb
2016-11-14 13:52:38 +01:00

9 lines
163 B
Ruby

class CreatePollBooths < ActiveRecord::Migration
def change
create_table :poll_booths do |t|
t.string :name
t.integer :poll_id
end
end
end