Remove DO $$ block from test data SQL

Replace the PostgreSQL anonymous code block with simple comments.
The RAISE NOTICE statements were just for CLI output and aren't
needed when seeding via the API.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Trey t
2025-11-28 08:56:37 -06:00
parent 9db1b41708
commit 3cd222c048

View File

@@ -159,13 +159,8 @@ SELECT setval('task_document_id_seq', (SELECT COALESCE(MAX(id), 0) + 1 FROM task
SELECT setval('notifications_notification_id_seq', (SELECT COALESCE(MAX(id), 0) + 1 FROM notifications_notification), false);
SELECT setval('notifications_notificationpreference_id_seq', (SELECT COALESCE(MAX(id), 0) + 1 FROM notifications_notificationpreference), false);
-- Summary
DO $$
BEGIN
RAISE NOTICE 'Test data seeded successfully!';
RAISE NOTICE 'Test Users (password: password123):';
RAISE NOTICE ' - admin (admin@example.com) - Admin, Pro tier';
RAISE NOTICE ' - john (john@example.com) - Pro tier, owns 2 residences';
RAISE NOTICE ' - jane (jane@example.com) - Free tier, owns 1 residence, shared access to residence 1';
RAISE NOTICE ' - bob (bob@example.com) - Free tier';
END $$;
-- Test Users (password: password123):
-- - admin (admin@example.com) - Admin, Pro tier
-- - john (john@example.com) - Pro tier, owns 2 residences
-- - jane (jane@example.com) - Free tier, owns 1 residence, shared access to residence 1
-- - bob (bob@example.com) - Free tier