Empfänger und Stammdaten speichern

This commit is contained in:
Moritz Utcke
2025-10-17 18:05:53 -04:00
parent 77a71d8f6c
commit af4bc5b282
12 changed files with 55 additions and 21 deletions

View File

@@ -0,0 +1,9 @@
/*
Warnings:
- You are about to drop the column `anrede` on the `benutzer` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "benutzer" DROP COLUMN "anrede",
ADD COLUMN "empfaenger" VARCHAR(100);

View File

@@ -17,7 +17,7 @@ model Benutzer {
ort String? @db.VarChar(50)
adresse String? @db.VarChar(150)
telefon String? @db.VarChar(50)
anrede String? @db.VarChar(50)
empfaenger String? @db.VarChar(100)
rolle BenutzerRolle @default(USER)
firma String?
lex_office_id String?