Files
plottservice/db/schema.rb
David Böhm e3d5d97c6c Worked on layout, added model funktions, changed database
Changes to the migration file make it necessary to reimport the
database: db:drop, db:create, db:migrate, db:seed
2024-08-01 00:27:55 +02:00

51 lines
2.0 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[7.1].define(version: 2024_07_30_214152) do
create_table "jobs", force: :cascade do |t|
t.integer "operator_id"
t.integer "costumer_id"
t.string "operator_firstname"
t.string "operator_lastname"
t.string "costumer_firstname"
t.string "costumer_lastname"
t.boolean "printed", default: false
t.boolean "paid", default: false
t.datetime "printed_at"
t.datetime "paid_at"
t.boolean "intern", default: false
t.string "cost_center"
t.integer "status", default: 0
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.string "pdf"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["costumer_id"], name: "index_jobs_on_costumer_id"
t.index ["operator_id"], name: "index_jobs_on_operator_id"
t.index ["status"], name: "index_jobs_on_status"
end
create_table "users", force: :cascade do |t|
t.string "firstname"
t.string "lastname"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
add_foreign_key "jobs", "users", column: "costumer_id"
add_foreign_key "jobs", "users", column: "operator_id"
end