mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-20 18:21:56 +03:00
2 lines
185 B
MySQL
2 lines
185 B
MySQL
|
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"));
|