openstreetmap-website/db/migrate/20121203124841_change_note_address_to_inet.rb
2012-12-03 14:50:55 +00:00

9 lines
250 B
Ruby

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