HUB - Admin und Einstellungen Seiten hinzugefügt, Prisma Client Integration und Migrationen aktualisiert

This commit is contained in:
PxlLoewe
2025-02-16 01:09:33 +01:00
parent a4bdc94aa1
commit 62ae71d6b6
28 changed files with 862 additions and 234 deletions

View File

@@ -0,0 +1,14 @@
/*
Warnings:
- Added the required column `global_name` to the `discord_accounts` table without a default value. This is not possible if the table is not empty.
- Added the required column `username` to the `discord_accounts` table without a default value. This is not possible if the table is not empty.
- Made the column `email` on table `discord_accounts` required. This step will fail if there are existing NULL values in that column.
*/
-- AlterTable
ALTER TABLE "discord_accounts" ADD COLUMN "avatar" TEXT,
ADD COLUMN "global_name" TEXT NOT NULL,
ADD COLUMN "username" TEXT NOT NULL,
ADD COLUMN "verified" BOOLEAN NOT NULL DEFAULT false,
ALTER COLUMN "email" SET NOT NULL;