Scaffold job model

This commit is contained in:
2024-07-29 00:39:55 +02:00
parent 42e3df63a7
commit 43dfb7398a
19 changed files with 522 additions and 1 deletions

38
db/schema.rb generated Normal file
View File

@@ -0,0 +1,38 @@
# 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_27_101347) do
create_table "jobs", force: :cascade do |t|
t.integer "operator_id_id", null: false
t.integer "costumer_id_id", null: false
t.string "operator_firstname"
t.string "operator_lastname"
t.string "costumer_firstname"
t.string "costumer_lastname"
t.boolean "paid"
t.datetime "printed_at"
t.boolean "intern"
t.string "cost_center"
t.integer "number_of_plans_a0"
t.integer "number_of_plans_a1"
t.integer "number_of_plans_a2"
t.integer "number_of_plans_a3"
t.float "costum_qm_plan"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["costumer_id_id"], name: "index_jobs_on_costumer_id_id"
t.index ["operator_id_id"], name: "index_jobs_on_operator_id_id"
end
add_foreign_key "jobs", "costumer_ids"
add_foreign_key "jobs", "operator_ids"
end