mirror of
https://github.com/internetee/registry.git
synced 2025-08-03 16:32:04 +02:00
Merge branch 'master' of github.com:domify/registry
Conflicts: config/locales/en.yml db/schema.rb
This commit is contained in:
commit
2fb632b7a9
21 changed files with 298 additions and 54 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