discourse/db/migrate/20130204000159_add_ip_address_to_users.rb

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

12 lines
239 B
Ruby
Raw Normal View History

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