Skip to content
Snippets Groups Projects
Commit 71d21baa authored by Yusuf Akgül's avatar Yusuf Akgül :hatching_chick:
Browse files

remove own migrations, needs to migrate prisma. see dev wiki

parent e7be7716
No related branches found
No related tags found
No related merge requests found
Pipeline #34441 passed
......@@ -42,4 +42,5 @@ yarn-error.log*
next-env.d.ts
# prisma
/prisma/migrations/*
dev.db*
\ No newline at end of file
-- CreateTable
CREATE TABLE "Message" (
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
"author" TEXT,
"gameId" TEXT,
"title" TEXT,
"content" TEXT NOT NULL,
"sentAt" DATETIME DEFAULT CURRENT_TIMESTAMP,
"updatedAt" DATETIME
);
# Please do not edit this file manually
# It should be added in your version-control system (i.e. Git)
provider = "sqlite"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment