Premiere verison route admin operationnelle

This commit is contained in:
karim hassan
2025-08-25 12:39:54 +00:00
parent eabd0aa50f
commit 38ea5c7da0
21 changed files with 692 additions and 53 deletions

View File

@@ -0,0 +1,6 @@
-- Example seeds (adjust IDs to your existing rows)
INSERT INTO matches (tournament_id, player_a_id, player_b_id, court, start_time)
VALUES
(1, NULL, NULL, 'Court 1', now() + interval '1 hour'),
(1, NULL, NULL, 'Court 2', now() + interval '2 hour')
ON CONFLICT DO NOTHING;