mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 09:27:19 +02:00
14 lines
289 B
Ruby
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
|