mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
10 lines
275 B
Ruby
10 lines
275 B
Ruby
class AddRegistrantVerifications < ActiveRecord::Migration
|
|
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
|