openstreetmap-website/db/migrate/20121203124841_change_note_address_to_inet.rb
2017-10-17 18:49:55 +01:00

9 lines
255 B
Ruby

class ChangeNoteAddressToInet < ActiveRecord::Migration[5.0]
def up
execute "ALTER TABLE note_comments ALTER COLUMN author_ip TYPE inet USING CAST(author_ip AS inet)"
end
def down
change_column :note_comments, :author_ip, :string
end
end