Files
nairobi/db/migrate/20150909211203_create_failed_census_calls.rb
2015-09-10 18:00:23 +02:00

14 lines
339 B
Ruby

class CreateFailedCensusCalls < ActiveRecord::Migration
def change
create_table :failed_census_calls do |t|
t.belongs_to :user, index: true, foreign_key: true
t.string :document_number
t.string :document_type
t.date :date_of_birth
t.string :postal_code
t.timestamps null: false
end
end
end