# Generated by Authkit. # # Create an auths table for managing OAuth authentication. class CreateAuths < ActiveRecord::Migration def self.up create_table :auths do |t| t.integer :user_id t.string :provider t.string :uid t.string :email t.boolean :verified_email t.string :token t.datetime :token_expires_at t.string :refresh_token t.string :secret_token t.text :env t.timestamps end end def self.down drop_table :auths end end