diff --git a/seeds/002_test_data.sql b/seeds/002_test_data.sql index 912f9cc..e75bacd 100644 --- a/seeds/002_test_data.sql +++ b/seeds/002_test_data.sql @@ -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