diff --git a/schema/testschema.sql b/schema/testschema.sql new file mode 100644 index 0000000..20bc5bb --- /dev/null +++ b/schema/testschema.sql @@ -0,0 +1,11 @@ +CREATE SCHEMA IF NOT EXISTS "testschema"; + +COMMENT ON SCHEMA "testschema" IS 'test schema for testing purposes'; + +CREATE TABLE "testschema"."testtable" ( + "id" serial, + "name" text NOT NULL, + "created_at" timestamptz DEFAULT now(), + CONSTRAINT "testtable_pkey" PRIMARY KEY (id) +); +