2014-05-21 18:19:40 -04:00
|
|
|
class GoogleUserInfo < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
end
|
2014-05-27 21:49:50 -04:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: google_user_infos
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
2018-02-20 01:28:58 -05:00
|
|
|
# google_user_id :string not null
|
|
|
|
# first_name :string
|
|
|
|
# last_name :string
|
|
|
|
# email :string
|
|
|
|
# gender :string
|
|
|
|
# name :string
|
|
|
|
# link :string
|
|
|
|
# profile_link :string
|
|
|
|
# picture :string
|
2014-08-27 01:19:25 -04:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2014-05-27 21:49:50 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_google_user_infos_on_google_user_id (google_user_id) UNIQUE
|
|
|
|
# index_google_user_infos_on_user_id (user_id) UNIQUE
|
|
|
|
#
|