1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-07 19:59:33 +00:00
discourse/db/migrate/20130204000159_add_ip_address_to_users.rb
2013-02-05 14:16:51 -05:00

9 lines
202 B
Ruby

class AddIpAddressToUsers < ActiveRecord::Migration
def up
execute 'alter table users add column ip_address inet'
end
def down
execute 'alter table users drop column ip_address'
end
end