We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3944c93 commit 3740d28Copy full SHA for 3740d28
schema/schema.sql
@@ -18,6 +18,7 @@ CREATE INDEX "idx_audit_username" ON ONLY "public"."audit" (user_name);
18
CREATE TABLE "public"."department" (
19
"dept_no" text NOT NULL,
20
"dept_name" text NOT NULL,
21
+ created_at timestamptz DEFAULT now(),
22
CONSTRAINT "department_pkey" PRIMARY KEY (dept_no),
23
CONSTRAINT "department_dept_name_key" UNIQUE (dept_name)
24
);
0 commit comments