mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
6 lines
207 B
Ruby
6 lines
207 B
Ruby
class AddDomainIdToRegistrantVerifications < ActiveRecord::Migration
|
|
def change
|
|
add_column :registrant_verifications, :domain_id, :integer
|
|
add_index :registrant_verifications, :domain_id
|
|
end
|
|
end
|