Skip to content

Commit

Permalink
auth with fb seems to work
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudhtodi committed Apr 19, 2012
1 parent 8a967a8 commit 568192f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Binary file modified db/development.sqlite3
Binary file not shown.
12 changes: 11 additions & 1 deletion db/schema.rb
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20120418011836) do
ActiveRecord::Schema.define(:version => 20120418205842) do

create_table "people", :force => true do |t|
t.integer "pid"
Expand All @@ -21,4 +21,14 @@
t.datetime "updated_at", :null => false
end

create_table "users", :force => true do |t|
t.string "provider"
t.string "uid"
t.string "name"
t.string "email"
t.string "phone_number"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end

end

0 comments on commit 568192f

Please sign in to comment.