mirror of
https://github.com/internetee/registry.git
synced 2025-06-05 04:07:33 +02:00
11 lines
279 B
Ruby
11 lines
279 B
Ruby
class PopulateSettings < ActiveRecord::Migration[6.0]
|
|
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
|