Setup first hasura schema

This commit is contained in:
Charles Bochet
2023-04-13 18:12:33 +02:00
committed by Anders Borch
parent b9d1d80f64
commit 0445c03b51
26 changed files with 92 additions and 25 deletions

View File

@ -0,0 +1 @@
DROP TABLE "public"."workspaces";

View File

@ -0,0 +1 @@
CREATE TABLE "public"."workspaces" ("id" serial NOT NULL, "name" Text NOT NULL, "display_name" text NOT NULL, PRIMARY KEY ("id") , UNIQUE ("id"), UNIQUE ("name"));