Created
December 10, 2013 16:46
-
-
Save bassettsj/7893833 to your computer and use it in GitHub Desktop.
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 "users", :force => true do |t| | |
| t.string "email", :default => "", :null => false | |
| t.string "encrypted_password", :default => "", :null => false | |
| t.string "reset_password_token" | |
| t.datetime "reset_password_sent_at" | |
| t.datetime "remember_created_at" | |
| t.integer "sign_in_count", :default => 0 | |
| t.datetime "current_sign_in_at" | |
| t.datetime "last_sign_in_at" | |
| t.string "current_sign_in_ip" | |
| t.string "last_sign_in_ip" | |
| t.datetime "created_at", :null => false | |
| t.datetime "updated_at", :null => false | |
| t.boolean "guest", :default => false | |
| t.string "facebook_handle" | |
| t.string "twitter_handle" | |
| t.string "googleplus_handle" | |
| t.string "display_name" | |
| t.string "address" | |
| t.string "admin_area" | |
| t.string "department" | |
| t.string "title" | |
| t.string "office" | |
| t.string "chat_id" | |
| t.string "website" | |
| t.string "affiliation" | |
| t.string "telephone" | |
| t.string "avatar_file_name" | |
| t.string "avatar_content_type" | |
| t.integer "avatar_file_size" | |
| t.datetime "avatar_updated_at" | |
| t.text "group_list" | |
| t.datetime "groups_last_update" | |
| t.string "role" | |
| t.string "drs_view" :default => "list" :null => false | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment