feat: add error handling to player creation and update gitignore for agent

This commit is contained in:
Erik Silva
2026-01-24 14:18:40 -03:00
commit 416bd83ea7
93 changed files with 16861 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/*
Warnings:
- A unique constraint covering the columns `[email]` on the table `Group` will be added. If there are existing duplicate values, this will fail.
*/
-- AlterTable
ALTER TABLE "Group" ADD COLUMN "email" TEXT,
ADD COLUMN "password" TEXT;
-- AlterTable
ALTER TABLE "Player" ALTER COLUMN "number" DROP NOT NULL;
-- CreateIndex
CREATE UNIQUE INDEX "Group_email_key" ON "Group"("email");