feature: add person schema in hasura
This commit is contained in:
@ -0,0 +1,3 @@
|
||||
table:
|
||||
name: person
|
||||
schema: public
|
||||
@ -1 +1,2 @@
|
||||
- "!include public_person.yaml"
|
||||
- "!include public_workspaces.yaml"
|
||||
|
||||
@ -0,0 +1 @@
|
||||
DROP TABLE "public"."person";
|
||||
@ -0,0 +1 @@
|
||||
CREATE TABLE "public"."person" ("id" serial NOT NULL, "firstname" text, "lastname" text NOT NULL, "company_domain" text, "phone" text, "city" text, PRIMARY KEY ("id") , UNIQUE ("id"));
|
||||
Reference in New Issue
Block a user