From 1d131e3742136086339bec87d877161df06a5854 Mon Sep 17 00:00:00 2001 From: zchpeter Date: Mon, 16 Mar 2026 18:12:24 +0800 Subject: [PATCH 1/2] Update 1.17.0_add_new_table.sql --- migrations-semver/1.17.0_add_new_table.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations-semver/1.17.0_add_new_table.sql b/migrations-semver/1.17.0_add_new_table.sql index f9c4e41..7268f61 100644 --- a/migrations-semver/1.17.0_add_new_table.sql +++ b/migrations-semver/1.17.0_add_new_table.sql @@ -1,2 +1,2 @@ select * from employee limit 10; -create table test000(id int); +create table test11(id int); From 5a78236c1beaf2f7edb908d78b2f859a7813d6dd Mon Sep 17 00:00:00 2001 From: zchpeter Date: Tue, 16 Jun 2026 11:27:48 +0800 Subject: [PATCH 2/2] Update schema.sql (#61) --- 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,