From 19d12c3a6b21c68150ce9df87c695ae1fad3df5b Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sun, 1 Feb 2026 14:09:33 -0500 Subject: [PATCH] docs: remove migration comments from database schema - Removed comment about user_ebook_folders table replacement - Removed comment about library system transition - Historical migration documentation removed This is part of legacy code cleanup Phase 1. Phase 1: Documentation Cleanup --- database/schema/schema.sql | 3 --- 1 file changed, 3 deletions(-) diff --git a/database/schema/schema.sql b/database/schema/schema.sql index 205a74e..64c830a 100644 --- a/database/schema/schema.sql +++ b/database/schema/schema.sql @@ -367,9 +367,6 @@ JOIN libraries l ON mi.library_id = l.id JOIN library_types lt ON l.library_type_id = lt.id WHERE lt.name = 'ebooks'; --- Note: user_ebook_folders table is replaced by library_folders table --- Libraries now handle folder management instead of individual users - -- Create indexes for better query performance CREATE INDEX idx_users_email ON users(email); CREATE INDEX idx_users_username ON users(username);