111 lines
4.6 KiB
Ruby
Generated
111 lines
4.6 KiB
Ruby
Generated
# 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.
|
|
#
|
|
# This file is the source Rails uses to define your schema when running `bin/rails
|
|
# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to
|
|
# be faster and is potentially less error prone than running all of your
|
|
# migrations from scratch. Old migrations may fail to apply correctly if those
|
|
# migrations use external dependencies or application code.
|
|
#
|
|
# It's strongly recommended that you check this file into your version control system.
|
|
|
|
ActiveRecord::Schema[8.0].define(version: 2024_08_26_144016) do
|
|
create_table "active_storage_attachments", force: :cascade do |t|
|
|
t.string "name", null: false
|
|
t.string "record_type", null: false
|
|
t.bigint "record_id", null: false
|
|
t.bigint "blob_id", null: false
|
|
t.datetime "created_at", null: false
|
|
t.index ["blob_id"], name: "index_active_storage_attachments_on_blob_id"
|
|
t.index ["record_type", "record_id", "name", "blob_id"], name: "index_active_storage_attachments_uniqueness", unique: true
|
|
end
|
|
|
|
create_table "active_storage_blobs", force: :cascade do |t|
|
|
t.string "key", null: false
|
|
t.string "filename", null: false
|
|
t.string "content_type"
|
|
t.text "metadata"
|
|
t.string "service_name", null: false
|
|
t.bigint "byte_size", null: false
|
|
t.string "checksum"
|
|
t.datetime "created_at", null: false
|
|
t.index ["key"], name: "index_active_storage_blobs_on_key", unique: true
|
|
end
|
|
|
|
create_table "active_storage_variant_records", force: :cascade do |t|
|
|
t.bigint "blob_id", null: false
|
|
t.string "variation_digest", null: false
|
|
t.index ["blob_id", "variation_digest"], name: "index_active_storage_variant_records_uniqueness", unique: true
|
|
end
|
|
|
|
create_table "jobs", force: :cascade do |t|
|
|
t.integer "customer_id"
|
|
t.integer "creator_id"
|
|
t.integer "cashier_id"
|
|
t.integer "operator_id"
|
|
t.string "customer_firstname"
|
|
t.string "customer_lastname"
|
|
t.string "operator_firstname"
|
|
t.string "operator_lastname"
|
|
t.string "cashier_firstname"
|
|
t.string "cashier_lastname"
|
|
t.datetime "printed_at"
|
|
t.datetime "paid_at"
|
|
t.datetime "status_changed_at"
|
|
t.boolean "intern", default: false
|
|
t.string "cost_center"
|
|
t.string "status", default: "open"
|
|
t.integer "number_of_plans_a0", default: 0
|
|
t.integer "number_of_plans_a1", default: 0
|
|
t.integer "number_of_plans_a2", default: 0
|
|
t.integer "number_of_plans_a3", default: 0
|
|
t.float "costum_qm_plan", default: 0.0
|
|
t.float "cost", default: 0.0
|
|
t.float "cost_qm", default: 0.0
|
|
t.boolean "privacy_policy", default: false
|
|
t.boolean "created_by_operator", default: false
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.index ["cashier_id"], name: "index_jobs_on_cashier_id"
|
|
t.index ["creator_id"], name: "index_jobs_on_creator_id"
|
|
t.index ["customer_id"], name: "index_jobs_on_customer_id"
|
|
t.index ["operator_id"], name: "index_jobs_on_operator_id"
|
|
t.index ["status"], name: "index_jobs_on_status"
|
|
end
|
|
|
|
create_table "sessions", force: :cascade do |t|
|
|
t.integer "user_id", null: false
|
|
t.string "user_agent"
|
|
t.string "ip_address"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.index ["user_id"], name: "index_sessions_on_user_id"
|
|
end
|
|
|
|
create_table "users", force: :cascade do |t|
|
|
t.string "email", null: false
|
|
t.string "password_digest", null: false
|
|
t.string "firstname"
|
|
t.string "lastname"
|
|
t.string "role", default: "user"
|
|
t.boolean "verified", default: false, null: false
|
|
t.integer "customer_jobs_count", default: 0
|
|
t.integer "operator_jobs_count", default: 0
|
|
t.integer "created_jobs_count", default: 0
|
|
t.integer "cashed_jobs_count", default: 0
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.index ["email"], name: "index_users_on_email", unique: true
|
|
t.index ["role"], name: "index_users_on_role"
|
|
end
|
|
|
|
add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id"
|
|
add_foreign_key "active_storage_variant_records", "active_storage_blobs", column: "blob_id"
|
|
add_foreign_key "jobs", "users", column: "cashier_id"
|
|
add_foreign_key "jobs", "users", column: "creator_id"
|
|
add_foreign_key "jobs", "users", column: "customer_id"
|
|
add_foreign_key "jobs", "users", column: "operator_id"
|
|
add_foreign_key "sessions", "users"
|
|
end
|