mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +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
|