feature: add person schema in hasura
This commit is contained in:
@ -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