discourse/db/migrate/20170213180857_add_user_aut...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
369 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddUserAuthTokenLog < ActiveRecord::Migration[4.2]
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