mirror of
https://github.com/internetee/registry.git
synced 2025-07-25 12:08:27 +02:00
Epp User login
This commit is contained in:
parent
76ec918426
commit
e20b138644
12 changed files with 106 additions and 8 deletions
14
db/migrate/20140620130107_create_epp_users.rb
Normal file
14
db/migrate/20140620130107_create_epp_users.rb
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue