twenty/hasura/migrations/default/1681983598184_create_table_public_person/up.sql

2 lines
185 B
MySQL
Raw Normal View History

2023-04-20 12:45:16 +03:00
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"));