Add member editing and profile pictures

This commit is contained in:
Rafael Foster
2026-04-27 08:09:00 -03:00
parent b82a86c4b3
commit 6e410cb671
26 changed files with 737 additions and 21 deletions
+7
View File
@@ -727,6 +727,13 @@ const MIGRATIONS = [
CREATE INDEX IF NOT EXISTS idx_users_family_role ON users(family_role);
`,
},
{
version: 20,
description: 'User profile pictures',
up: `
ALTER TABLE users ADD COLUMN avatar_data TEXT;
`,
},
];
/**