Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions schema/testschema.sql
Original file line number Diff line number Diff line change
@@ -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(),
Expand Down
Loading