openstreetmap-website/db/migrate/20121203124841_change_note_address_to_inet.rb
2019-04-24 11:14:05 +01:00

9 lines
255 B
Ruby

class ChangeNoteAddressToInet < ActiveRecord::Migration[4.2]
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