mirror of
https://github.com/documenso/documenso.git
synced 2025-11-24 13:41:30 +10:00
18 lines
726 B
SQL
18 lines
726 B
SQL
-- CreateTable
|
|
CREATE TABLE "DocumentComment" (
|
|
"id" SERIAL NOT NULL,
|
|
"documentId" INTEGER NOT NULL,
|
|
"userId" INTEGER NOT NULL,
|
|
"comment" TEXT NOT NULL,
|
|
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
"updatedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
CONSTRAINT "DocumentComment_pkey" PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "DocumentComment" ADD CONSTRAINT "DocumentComment_documentId_fkey" FOREIGN KEY ("documentId") REFERENCES "Document"("id") ON DELETE CASCADE ON UPDATE CASCADE;
|
|
|
|
-- AddForeignKey
|
|
ALTER TABLE "DocumentComment" ADD CONSTRAINT "DocumentComment_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
|