discourse/db/migrate/20130204000159_add_ip_addre...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
238 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddIpAddressToUsers < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
def up
execute "alter table users add column ip_address inet"
end
def down
execute "alter table users drop column ip_address"
end
end