mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
7 lines
233 B
Ruby
7 lines
233 B
Ruby
class AddNsDataToZones < ActiveRecord::Migration
|
|
def change
|
|
add_column :zonefile_settings, :ns_records, :text
|
|
add_column :zonefile_settings, :a_records, :text
|
|
add_column :zonefile_settings, :a4_records, :text
|
|
end
|
|
end
|