mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 15:52:21 +08:00
11 lines
239 B
Ruby
11 lines
239 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
|