mirror of
https://github.com/internetee/registry.git
synced 2025-06-05 12:17:30 +02:00
Registrant change now requires EPP verify attribute
This commit is contained in:
parent
7d0365974e
commit
d72cbc20f5
21 changed files with 318 additions and 29 deletions
5
db/migrate/20150515103222_add_pending_requests.rb
Normal file
5
db/migrate/20150515103222_add_pending_requests.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddPendingRequests < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :domains, :pending_json, :json
|
||||
end
|
||||
end
|
10
db/migrate/20150518084324_add_registrant_verifications.rb
Normal file
10
db/migrate/20150518084324_add_registrant_verifications.rb
Normal file
|
@ -0,0 +1,10 @@
|
|||
class AddRegistrantVerifications < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :registrant_verifications do |t|
|
||||
t.string :domain_name
|
||||
t.string :verification_token
|
||||
t.timestamps
|
||||
end
|
||||
add_index :registrant_verifications, :created_at
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue