Created
August 1, 2014 03:48
-
-
Save orafaelfragoso/5c70d8962f6acecc74d4 to your computer and use it in GitHub Desktop.
Schema for Omniauth and Devise
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create_table "identities", force: true do |t| | |
t.integer "member_id" | |
t.string "uid" | |
t.string "provider" | |
t.string "oauth_token" | |
t.string "oauth_secret" | |
t.datetime "oauth_expires_at" | |
end | |
add_index "identities", ["member_id"], name: "index_identities_on_member_id", using: :btree | |
create_table "members", force: true do |t| | |
t.string "first_name" | |
t.string "last_name" | |
t.string "email" | |
t.string "gender" | |
t.date "birthday" | |
t.datetime "created_at" | |
t.datetime "updated_at" | |
t.string "profile_picture" | |
t.string "nickname" | |
t.string "location" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment