discourse/db/migrate/20130204000159_add_ip_address_to_users.rb

11 lines
238 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddIpAddressToUsers < ActiveRecord::Migration[4.2]
2013-02-05 13:16:51 -06: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