Remove registrant_verifications.domain_name database column

It is not used nor needed.
This commit is contained in:
Artur Beljajev 2019-12-06 20:47:57 +02:00
parent b4be9e7f00
commit 6fd172adbb
7 changed files with 8 additions and 7 deletions

View file

@ -0,0 +1,5 @@
class RemoveRegistrantVerificationsDomainName < ActiveRecord::Migration[5.0]
def change
remove_column :registrant_verifications, :domain_name
end
end