mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 14:44:47 +02:00
10 lines
280 B
Ruby
10 lines
280 B
Ruby
class AddRegistrantVerifications < ActiveRecord::Migration[6.0]
|
|
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
|