Files
nairobi/db/migrate/20160914172016_create_poll_voters.rb
2016-11-14 13:51:59 +01:00

10 lines
205 B
Ruby

class CreatePollVoters < ActiveRecord::Migration
def change
create_table :poll_voters do |t|
t.integer :booth_id
t.string :document_number
t.string :document_type
end
end
end