rf/changes schema minorly

This commit is contained in:
itsscb 2023-09-20 20:16:17 +02:00
parent e8c75d812f
commit b4fb6ad53a

View File

@ -10,7 +10,6 @@ CREATE TABLE "mails" (
"created" timestamptz NOT NULL DEFAULT (now()),
"changer" varchar NOT NULL,
"changed" timestamptz NOT NULL DEFAULT (now())
);
CREATE TABLE "customers" (
@ -116,8 +115,8 @@ CREATE TABLE "returns" (
CREATE TABLE "returnsLog" (
"ID" bigserial UNIQUE PRIMARY KEY NOT NULL,
"returnsID" bigint,
"mailID" bigint,
"returnsID" bigint NOT NULL,
"mailID" bigint NOT NULL,
"status" varchar,
"creator" varchar NOT NULL,
"created" timestamptz NOT NULL DEFAULT (now()),