mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
9 lines
193 B
Ruby
9 lines
193 B
Ruby
class AddRenewSetting < ActiveRecord::Migration
|
|
def self.up
|
|
Setting.days_to_renew_domain_before_expire = 90
|
|
end
|
|
|
|
def self.down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|