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); 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,