mirror of
https://github.com/internetee/registry.git
synced 2025-08-06 09:45:11 +02:00
Registrant domain update confirmation
This commit is contained in:
parent
254849494f
commit
ee39181094
16 changed files with 236 additions and 10 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddAcitonToRegistrantVerification < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :registrant_verifications, :action, :string
|
||||
end
|
||||
end
|
|
@ -0,0 +1,6 @@
|
|||
class AddDomainIdToRegistrantVerifications < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :registrant_verifications, :domain_id, :integer
|
||||
add_index :registrant_verifications, :domain_id
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
class AddActionTypeToRegistrantVerifications < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :registrant_verifications, :action_type, :string
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue