Skip to content

Commit 1aaa63c

Browse files
Merge pull request #26 from adela-bytebase/create-testschema-testtable
add new schem and table
2 parents 0f4ad92 + ad75296 commit 1aaa63c

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)