Major rework: multi-user accounts (register/login, per-user data isolation), new layout with sidebar/dashboard/profile menu, matrix phase view with collapsible category columns, life timeline with ages per phase, live budget capping, collapsible transitions, mobile support
Deploy App / deploy (push) Successful in 1m47s

This commit is contained in:
2026-07-11 17:31:18 +02:00
parent 2e65bb3a2d
commit 685ff46c27
31 changed files with 1479 additions and 721 deletions
@@ -0,0 +1,25 @@
-- Multi-User-Umbau mit Fresh-Start: bestehende Testdaten werden verworfen
-- (abgestimmt am 11.07.2026). Household haengt neu an einem User-Konto.
-- Bestehende Daten loeschen (Cascade raeumt Persons, Plans, Phases, ... mit ab)
DELETE FROM "Household";
DROP TABLE "AppCredential";
-- CreateTable
CREATE TABLE "User" (
"id" TEXT NOT NULL,
"username" TEXT NOT NULL,
"passwordHash" TEXT NOT NULL,
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT "User_pkey" PRIMARY KEY ("id")
);
-- CreateIndex
CREATE UNIQUE INDEX "User_username_key" ON "User"("username");
-- AlterTable (Tabelle ist leer, daher NOT NULL ohne Default moeglich)
ALTER TABLE "Household" ADD COLUMN "userId" TEXT NOT NULL;
-- AddForeignKey
ALTER TABLE "Household" ADD CONSTRAINT "Household_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;