Registrant change now requires EPP verify attribute

This commit is contained in:
Priit Tark 2015-05-18 14:48:32 +03:00
parent 7d0365974e
commit d72cbc20f5
21 changed files with 318 additions and 29 deletions

View file

@ -0,0 +1,5 @@
class AddPendingRequests < ActiveRecord::Migration
def change
add_column :domains, :pending_json, :json
end
end

View 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