initial commit

This commit is contained in:
qugalet 2023-07-09 23:53:49 +03:00
commit a1806cbac9
17 changed files with 3155 additions and 0 deletions

View file

@ -0,0 +1,10 @@
-- CreateTable
CREATE TABLE "Post" (
"postId" TEXT NOT NULL,
"matrixId" TEXT NOT NULL,
CONSTRAINT "Post_pkey" PRIMARY KEY ("postId")
);
-- CreateIndex
CREATE UNIQUE INDEX "Post_matrixId_key" ON "Post"("matrixId");