mirror of
https://github.com/discourse/discourse.git
synced 2025-03-03 17:59:20 +00:00
6 lines
142 B
Ruby
6 lines
142 B
Ruby
class AddRegistrationIpAddressToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :registration_ip_address, :inet
|
|
end
|
|
end
|