Skip to content

Commit 9d9000b

Browse files
authored
Update schema.sql
1 parent d8e39c0 commit 9d9000b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

schema/schema.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ CREATE TABLE "public"."title" (
7676
CONSTRAINT "title_emp_no_fkey" FOREIGN KEY ("emp_no") REFERENCES "public"."employee" ("emp_no") ON DELETE CASCADE
7777
);
7878

79+
CREATE TABLE "public"."test_singpass" (
80+
"id" integer PRIMARY KEY,
81+
"name" text NOT NULL
82+
);
83+
7984
CREATE VIEW "public"."current_dept_emp" AS SELECT l.emp_no,
8085
d.dept_no,
8186
l.from_date,

0 commit comments

Comments
 (0)