2014-11-06 14:46:59 +01:00
|
|
|
# encoding: UTF-8
|
|
|
|
# This file is auto-generated from the current state of the database. Instead
|
|
|
|
# of editing this file, please use the migrations feature of Active Record to
|
|
|
|
# incrementally modify your database, and then regenerate this schema definition.
|
|
|
|
#
|
|
|
|
# Note that this schema.rb definition is the authoritative source for your
|
|
|
|
# database schema. If you need to create the application database on another
|
|
|
|
# system, you should be using db:schema:load, not running all the migrations
|
|
|
|
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
|
|
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
|
|
#
|
|
|
|
# It's strongly recommended that you check this file into your version control system.
|
|
|
|
|
2015-09-18 21:11:45 +02:00
|
|
|
ActiveRecord::Schema.define(version: 20150918190548) do
|
2015-09-12 11:17:58 +02:00
|
|
|
|
|
|
|
create_table "delayed_jobs", force: :cascade do |t|
|
|
|
|
t.integer "priority", default: 0, null: false
|
|
|
|
t.integer "attempts", default: 0, null: false
|
|
|
|
t.text "handler", null: false
|
|
|
|
t.text "last_error"
|
|
|
|
t.datetime "run_at"
|
|
|
|
t.datetime "locked_at"
|
|
|
|
t.datetime "failed_at"
|
|
|
|
t.string "locked_by"
|
|
|
|
t.string "queue"
|
|
|
|
t.datetime "created_at"
|
|
|
|
t.datetime "updated_at"
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index "delayed_jobs", ["priority", "run_at"], name: "delayed_jobs_priority"
|
2014-11-25 14:27:27 +01:00
|
|
|
|
2015-02-12 16:14:11 +01:00
|
|
|
create_table "order_items", force: :cascade do |t|
|
2015-02-10 08:33:51 +01:00
|
|
|
t.integer "order_id"
|
2015-02-09 17:06:24 +01:00
|
|
|
t.integer "product_id", null: false
|
2015-02-09 11:58:43 +01:00
|
|
|
t.integer "count", default: 0
|
2014-11-25 14:27:27 +01:00
|
|
|
end
|
2014-11-09 22:53:39 +01:00
|
|
|
|
2015-02-12 16:14:11 +01:00
|
|
|
create_table "orders", force: :cascade do |t|
|
2014-11-09 22:53:39 +01:00
|
|
|
t.integer "user_id"
|
2015-03-12 13:25:11 +01:00
|
|
|
t.integer "price_cents"
|
2015-09-14 17:52:25 +02:00
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2015-09-14 11:20:52 +02:00
|
|
|
t.integer "transaction_id"
|
2014-11-09 22:53:39 +01:00
|
|
|
end
|
|
|
|
|
2015-08-31 14:33:15 +02:00
|
|
|
add_index "orders", ["created_at"], name: "index_orders_on_created_at"
|
2014-11-09 22:53:39 +01:00
|
|
|
add_index "orders", ["user_id", "created_at"], name: "index_orders_on_user_id_and_created_at"
|
|
|
|
add_index "orders", ["user_id"], name: "index_orders_on_user_id"
|
2014-11-06 14:46:59 +01:00
|
|
|
|
2015-02-12 16:14:11 +01:00
|
|
|
create_table "products", force: :cascade do |t|
|
2015-09-14 11:20:52 +02:00
|
|
|
t.string "name", null: false
|
|
|
|
t.integer "price_cents", default: 0, null: false
|
2015-02-12 16:14:11 +01:00
|
|
|
t.datetime "created_at"
|
|
|
|
t.datetime "updated_at"
|
2015-09-14 11:20:52 +02:00
|
|
|
t.string "avatar_file_name"
|
|
|
|
t.string "avatar_content_type"
|
2014-12-04 20:32:31 +01:00
|
|
|
t.integer "avatar_file_size"
|
|
|
|
t.datetime "avatar_updated_at"
|
2015-09-14 11:20:52 +02:00
|
|
|
t.integer "category", default: 0
|
|
|
|
t.integer "stock", default: 0, null: false
|
2015-07-07 20:09:58 +02:00
|
|
|
t.integer "calories"
|
2015-09-14 11:20:52 +02:00
|
|
|
t.boolean "deleted", default: false
|
2014-11-24 21:45:32 +01:00
|
|
|
end
|
|
|
|
|
2015-02-12 16:14:11 +01:00
|
|
|
create_table "users", force: :cascade do |t|
|
2014-11-06 14:46:59 +01:00
|
|
|
t.datetime "created_at"
|
|
|
|
t.datetime "updated_at"
|
2014-12-09 17:17:11 +01:00
|
|
|
t.datetime "remember_created_at"
|
2015-02-12 16:14:11 +01:00
|
|
|
t.boolean "admin"
|
|
|
|
t.integer "dagschotel_id"
|
2015-09-14 11:20:52 +02:00
|
|
|
t.string "avatar_file_name"
|
|
|
|
t.string "avatar_content_type"
|
2015-02-12 16:14:11 +01:00
|
|
|
t.integer "avatar_file_size"
|
|
|
|
t.datetime "avatar_updated_at"
|
2015-09-14 11:20:52 +02:00
|
|
|
t.integer "orders_count", default: 0
|
|
|
|
t.boolean "koelkast", default: false
|
2015-09-14 17:52:25 +02:00
|
|
|
t.string "name"
|
2015-09-14 11:20:52 +02:00
|
|
|
t.string "encrypted_password", default: "", null: false
|
|
|
|
t.boolean "private", default: false
|
2014-11-06 14:46:59 +01:00
|
|
|
end
|
|
|
|
|
2015-02-09 17:06:24 +01:00
|
|
|
add_index "users", ["koelkast"], name: "index_users_on_koelkast"
|
|
|
|
add_index "users", ["orders_count"], name: "index_users_on_orders_count"
|
|
|
|
|
2014-11-06 14:46:59 +01:00
|
|
|
end
|