Skip to content

Commit ad75296

Browse files
add new schem and table
1 parent 0f4ad92 commit ad75296

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

schema/testschema.sql

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
CREATE SCHEMA IF NOT EXISTS "testschema";
2+
3+
COMMENT ON SCHEMA "testschema" IS 'test schema for testing purposes';
4+
5+
CREATE TABLE "testschema"."testtable" (
6+
"id" serial,
7+
"name" text NOT NULL,
8+
"created_at" timestamptz DEFAULT now(),
9+
CONSTRAINT "testtable_pkey" PRIMARY KEY (id)
10+
);
11+

0 commit comments

Comments
 (0)