From ad752965b1432ba0113ce61bf5763c60543188c1 Mon Sep 17 00:00:00 2001 From: adela Date: Wed, 5 Nov 2025 18:21:55 +0100 Subject: [PATCH] add new schem and table --- schema/testschema.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 schema/testschema.sql 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) +); +