diff --git a/schema/testschema.sql b/schema/testschema.sql index 20bc5bb..2f30ad3 100644 --- a/schema/testschema.sql +++ b/schema/testschema.sql @@ -1,8 +1,4 @@ -CREATE SCHEMA IF NOT EXISTS "testschema"; - -COMMENT ON SCHEMA "testschema" IS 'test schema for testing purposes'; - -CREATE TABLE "testschema"."testtable" ( +CREATE TABLE "public"."testtable" ( "id" serial, "name" text NOT NULL, "created_at" timestamptz DEFAULT now(),