discourse/db/migrate/20130204000159_add_ip_address_to_users.rb

9 lines
207 B
Ruby
Raw Normal View History

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
def down
execute 'alter table users drop column ip_address'
end
end