Premiere verison route admin operationnelle
This commit is contained in:
6
backend/sql/seed_matches.sql
Normal file
6
backend/sql/seed_matches.sql
Normal 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;
|
||||
Reference in New Issue
Block a user