We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0f4ad92 + ad75296 commit 1aaa63cCopy full SHA for 1aaa63c
schema/testschema.sql
@@ -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