mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 09:57:23 +02:00
11 lines
274 B
Ruby
11 lines
274 B
Ruby
class PopulateSettings < ActiveRecord::Migration
|
|
def change
|
|
SettingGroup.create(
|
|
code: 'domain_validation',
|
|
settings: [
|
|
Setting.create(code: 'ns_min_count', value: 1),
|
|
Setting.create(code: 'ns_max_count', value: 13)
|
|
]
|
|
)
|
|
end
|
|
end
|