mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
0ab96a7691
This is only needed to debug auth token issues, will result in lots of logging
14 lines
333 B
Ruby
14 lines
333 B
Ruby
class AddUserAuthTokenLog < ActiveRecord::Migration
|
|
def change
|
|
create_table :user_auth_token_logs do |t|
|
|
t.string :action, null: false
|
|
t.integer :user_auth_token_id
|
|
t.integer :user_id
|
|
t.inet :client_ip
|
|
t.string :user_agent
|
|
t.string :auth_token
|
|
t.datetime :created_at
|
|
end
|
|
end
|
|
end
|