Add linkedinUrl and job titles to table views (#809)

* Add linedinUrl and job titles to table views

* Keep address in the end

* Add mock data
This commit is contained in:
Emilien Chauvet
2023-07-21 15:18:19 -07:00
committed by GitHub
parent 56cff63c4b
commit 73e9104b16
22 changed files with 301 additions and 19 deletions

View File

@ -0,0 +1,6 @@
-- AlterTable
ALTER TABLE "companies" ADD COLUMN "linkedinUrl" TEXT;
-- AlterTable
ALTER TABLE "people" ADD COLUMN "jobTitle" TEXT,
ADD COLUMN "linkedinUrl" TEXT;