class CreateSocialLogins < ActiveRecord::Migration[5.0]
  def change
    create_table :social_logins do |t|
      t.integer :user_id
      t.string :auth_token
      t.datetime :expires_at
      t.integer :social_login_type

      t.timestamps
    end
  end
end
