mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
10 lines
233 B
Ruby
10 lines
233 B
Ruby
class PopulateGeneralDomainSettings < ActiveRecord::Migration
|
|
def change
|
|
SettingGroup.create(
|
|
code: 'domain_general',
|
|
settings: [
|
|
Setting.create(code: 'transfer_wait_time', value: 0)
|
|
]
|
|
)
|
|
end
|
|
end
|