10 lines
265 B
SQL
10 lines
265 B
SQL
CREATE TABLE "manualPrinting" (
|
|
"print_id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
|
"line" integer,
|
|
"printReason" text NOT NULL,
|
|
"initials" text NOT NULL,
|
|
"additionalComments" text NOT NULL,
|
|
"add_date" timestamp DEFAULT now(),
|
|
"add_user" text
|
|
);
|