internetee-registry/db/migrate/20140620130107_create_epp_users.rb
2014-06-20 17:12:46 +03:00

14 lines
289 B
Ruby

class CreateEppUsers < ActiveRecord::Migration
def change
create_table :epp_users do |t|
t.integer :registrar_id
t.string :username
t.string :password
t.boolean :active, default: false
t.text :csr
t.text :crt
t.timestamps
end
end
end