internetee-registry/db/migrate/20150803080914_add_ns_data_to_zones.rb
2021-04-26 18:54:26 +05:00

7 lines
238 B
Ruby

class AddNsDataToZones < ActiveRecord::Migration[6.0]
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