Update authentication system, database models, and UI components
This commit is contained in:
6
cleanup_remaining_orphaned.sql
Normal file
6
cleanup_remaining_orphaned.sql
Normal file
@ -0,0 +1,6 @@
|
||||
-- Cleanup remaining orphaned uploadlog entries for devuser
|
||||
DELETE FROM uploadlog WHERE uid = 'devuser';
|
||||
|
||||
-- Verify cleanup
|
||||
SELECT 'All remaining uploadlog entries after cleanup:' as info;
|
||||
SELECT uid, filename, created_at FROM uploadlog ORDER BY created_at DESC;
|
Reference in New Issue
Block a user