Initial commit

This commit is contained in:
2025-11-29 16:59:02 -06:00
commit da4f051282
25 changed files with 1144 additions and 0 deletions

7
seeds/users.sql Normal file
View File

@@ -0,0 +1,7 @@
-- Seed Users
INSERT INTO users (id, email, username) VALUES
('650e8400-e29b-41d4-a716-446655440001', 'john.doe@example.com', 'johndoe'),
('650e8400-e29b-41d4-a716-446655440002', 'jane.smith@example.com', 'janesmith'),
('650e8400-e29b-41d4-a716-446655440003', 'mike.wilson@example.com', 'mikewilson'),
('650e8400-e29b-41d4-a716-446655440004', 'sarah.jones@example.com', 'sarahjones')
ON CONFLICT (email) DO NOTHING;