Files
site-interpromos/sql/data.sql
nano 52c4aef6b4 Add functionnalities (#7)
* Add functions to create match and team

* add function to modify score
2022-10-13 15:45:21 +02:00

9 lines
148 B
SQL

DELETE FROM sports;
ALTER SEQUENCE sports_id_seq RESTART;
INSERT INTO sports ("name") values
('Basket'),
('Hand'),
('Bad'),
('Volley'),
('Futsal');