# This file is autogenerated. Instead of editing this file, please use the # migrations feature of ActiveRecord to incrementally modify your database, and # then regenerate this schema definition. ActiveRecord::Schema.define(:version => 5) do create_table "open_id_authentication_associations", :force => true do |t| t.binary "server_url" t.string "handle" t.binary "secret" t.integer "issued" t.integer "lifetime" t.string "assoc_type" end create_table "open_id_authentication_nonces", :force => true do |t| t.string "nonce" t.integer "created" end create_table "open_id_authentication_settings", :force => true do |t| t.string "setting" t.binary "value" end create_table "user_openids", :force => true do |t| t.string "openid_url", :default => "", :null => false t.integer "user_id", :null => false t.datetime "created_at" t.datetime "updated_at" end add_index "user_openids", ["openid_url"], :name => "index_user_openids_on_openid_url", :unique => true add_index "user_openids", ["user_id"], :name => "index_user_openids_on_user_id" create_table "users", :force => true do |t| t.string "login" t.string "email" t.string "crypted_password", :limit => 40 t.string "salt", :limit => 40 t.datetime "created_at" t.datetime "updated_at" t.string "remember_token" t.datetime "remember_token_expires_at" t.string "activation_code", :limit => 40 t.datetime "activated_at" t.string "name" end end