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