mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:32:26 +08:00
11 lines
238 B
Ruby
11 lines
238 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddIpAddressToUsers < ActiveRecord::Migration[4.2]
|
|
def up
|
|
execute "alter table users add column ip_address inet"
|
|
end
|
|
def down
|
|
execute "alter table users drop column ip_address"
|
|
end
|
|
end
|