first commit

This commit is contained in:
2025-11-06 16:40:32 +03:00
commit f0948a5b05
51 changed files with 13047 additions and 0 deletions
@@ -0,0 +1,14 @@
/*
Warnings:
- You are about to drop the column `ipAddress` on the `Session` table. All the data in the column will be lost.
- You are about to drop the column `token` on the `Session` table. All the data in the column will be lost.
- You are about to drop the column `userAgent` on the `Session` table. All the data in the column will be lost.
- Made the column `sessionToken` on table `Session` required. This step will fail if there are existing NULL values in that column.
*/
-- AlterTable
ALTER TABLE "Session" DROP COLUMN "ipAddress",
DROP COLUMN "token",
DROP COLUMN "userAgent",
ALTER COLUMN "sessionToken" SET NOT NULL;