twenty/hasura/migrations/default/1681983598184_create_table_public_person/up.sql
2023-04-20 13:58:52 +02:00

2 lines
185 B
SQL

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"));