diff --git a/scratch/fix_db.patch b/scratch/fix_db.patch new file mode 100644 index 0000000..ae7df46 --- /dev/null +++ b/scratch/fix_db.patch @@ -0,0 +1,10 @@ +--- server/db.ts ++++ server/db.ts +@@ -226,6 +226,7 @@ + + try { + await sql`ALTER TABLE event_passes ADD COLUMN IF NOT EXISTS is_paused BOOLEAN DEFAULT FALSE`; ++ await sql`ALTER TABLE users ADD COLUMN IF NOT EXISTS event_pass_id UUID REFERENCES event_passes(id) ON DELETE CASCADE`; + } catch { + // Ignore migration column exists + } diff --git a/scratch/jules_session_13025.patch b/scratch/jules_session_13025.patch new file mode 100644 index 0000000..9244e0d --- /dev/null +++ b/scratch/jules_session_13025.patch @@ -0,0 +1,1524 @@ +diff --git a/ui/components/AuthenticatedLayout.tsx b/ui/components/AuthenticatedLayout.tsx +index ca464ea..baa3592 100644 +--- a/ui/components/AuthenticatedLayout.tsx ++++ b/ui/components/AuthenticatedLayout.tsx +@@ -1,4 +1,7 @@ + import { COMMON_CSS } from "./CommonStyles.ts"; ++import { Navbar } from "./layout/Navbar.tsx"; ++import { MobileNav } from "./layout/MobileNav.tsx"; ++import { UserMenu } from "./layout/UserMenu.tsx"; + + export const AuthenticatedLayout = ({ + children, +@@ -265,80 +268,9 @@ export const AuthenticatedLayout = ({ +
+