class CreateSocialAuthServices

Public Instance Methods

change() click to toggle source
# File lib/generators/social_auth/install/templates/create_social_auth_services.rb, line 2
def change
  create_table :social_auth_services do |t|
    t.string :type, default: "SocialAuth::Service"
    t.json :access_token
    t.string :remote_id
    t.integer :user_id
    t.string :method
    t.timestamps
  end
end