mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:03:57 -06: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
|