Devise schema removed

This commit is contained in:
Christoph Haas 2015-05-03 13:30:07 +02:00
parent cd6fb9ca23
commit a2acb87cfc

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20150502140613) do
ActiveRecord::Schema.define(version: 20150426141106) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -71,23 +71,5 @@ ActiveRecord::Schema.define(version: 20150502140613) do
add_index "screenshots", ["id", "approved"], name: "id_approved", using: :btree
add_index "screenshots", ["id", "uploaderhash"], name: "id_uploaderhash", using: :btree
create_table "users", force: :cascade 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, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.inet "current_sign_in_ip"
t.inet "last_sign_in_ip"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
add_foreign_key "screenshots", "packages", name: "screenshots_package_id_fkey"
end