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.
1 parent 0f4ad92 commit ad75296Copy full SHA for ad75296
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