Resume + Projects done

This commit is contained in:
Ahmed Al-Taiar
2024-10-01 20:45:43 -04:00
parent 9c0dee7d54
commit 4a94b6807e
32 changed files with 1034 additions and 431 deletions

View File

@ -0,0 +1,15 @@
-- CreateTable
CREATE TABLE "Resume" (
"id" SERIAL NOT NULL,
"fileId" TEXT NOT NULL,
CONSTRAINT "Resume_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Title" (
"id" SERIAL NOT NULL,
"title" TEXT NOT NULL,
CONSTRAINT "Title_pkey" PRIMARY KEY ("id")
);