From 9d9000baa9ac985d4712e1835bbaf062497bc407 Mon Sep 17 00:00:00 2001 From: zchpeter Date: Wed, 21 Jan 2026 11:35:54 +0800 Subject: [PATCH] Update schema.sql --- schema/schema.sql | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/schema/schema.sql b/schema/schema.sql index cc6e61e..a87de84 100644 --- a/schema/schema.sql +++ b/schema/schema.sql @@ -76,6 +76,11 @@ CREATE TABLE "public"."title" ( CONSTRAINT "title_emp_no_fkey" FOREIGN KEY ("emp_no") REFERENCES "public"."employee" ("emp_no") ON DELETE CASCADE ); +CREATE TABLE "public"."test_singpass" ( + "id" integer PRIMARY KEY, + "name" text NOT NULL +); + CREATE VIEW "public"."current_dept_emp" AS SELECT l.emp_no, d.dept_no, l.from_date,