Epp User login

This commit is contained in:
Martin Lensment 2014-06-20 17:12:46 +03:00
parent 76ec918426
commit e20b138644
12 changed files with 106 additions and 8 deletions

View file

@ -0,0 +1,14 @@
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