1
Fork 0
shimmeringmoon/migrations/04-auto-delete-scores/up.sql
prescientmoon 0e0043d2c1
Add more tests (and fix the score delete command)
Additionally, add a cli analogue of `score magic` (the `analyse`
subcommand)
2024-09-17 02:00:36 +02:00

8 lines
193 B
SQL

-- Automatically delete all associated scores
-- every time a play is deleted.
CREATE TRIGGER auto_delete_scores AFTER DELETE ON plays
BEGIN
DELETE FROM scores
WHERE play_id = OLD.id;
END;