internetee-registry/db/migrate/20140620130107_create_epp_users.rb
2021-04-26 18:54:26 +05:00

14 lines
294 B
Ruby

class CreateEppUsers < ActiveRecord::Migration[6.0]
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