mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 09:57:23 +02:00
10 lines
223 B
Ruby
10 lines
223 B
Ruby
class AddExpireSettings < ActiveRecord::Migration
|
|
def self.up
|
|
Setting.expire_warning_period = 15
|
|
Setting.redemption_grace_period = 30
|
|
end
|
|
|
|
def self.down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|