internetee-registry/db/migrate/20150803080914_add_ns_data_to_zones.rb
2015-08-03 12:05:31 +03:00

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