small improvement

This commit is contained in:
Daniel
2023-06-13 18:00:52 +03:30
parent 3628d4281a
commit 5b0e0b4208
6 changed files with 10 additions and 38 deletions
@@ -69,8 +69,6 @@ CREATE TABLE "Link" (
"url" TEXT NOT NULL,
"title" TEXT NOT NULL,
"collectionId" INTEGER NOT NULL,
"screenshotPath" TEXT NOT NULL,
"pdfPath" TEXT NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT "Link_pkey" PRIMARY KEY ("id")
-2
View File
@@ -93,8 +93,6 @@ model Link {
collectionId Int
tags Tag[]
pins PinnedLinks[]
screenshotPath String
pdfPath String
createdAt DateTime @default(now())
}