mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 06:34:46 +02:00
7 lines
186 B
Ruby
7 lines
186 B
Ruby
class AddRegistryLockTimeColumn < ActiveRecord::Migration
|
|
def change
|
|
change_table(:domains) do |t|
|
|
t.column :locked_by_registrant_at, :datetime, null: true
|
|
end
|
|
end
|
|
end
|