finalize migration (yay)

This commit is contained in:
tw-blue
2025-12-10 22:11:30 +01:00
parent cd6cfec7f3
commit c7d53c88bc
40 changed files with 966 additions and 499 deletions
@@ -0,0 +1,21 @@
/*
Warnings:
- You are about to drop the column `uvertrag` on the `Member` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "Member" DROP COLUMN "uvertrag",
ADD COLUMN "marker" BOOLEAN;
-- CreateTable
CREATE TABLE "session" (
"sid" VARCHAR NOT NULL,
"sess" JSON NOT NULL,
"expire" TIMESTAMP(6) NOT NULL,
CONSTRAINT "session_pkey" PRIMARY KEY ("sid")
);
-- CreateIndex
CREATE INDEX "IDX_session_expire" ON "session"("expire");