pastebin/migrations/2019-10-12-170323_perl/down.sql

14 lines
395 B
MySQL
Raw Normal View History

2019-10-12 17:29:17 +00:00
DELETE FROM implementation_wrappers WHERE implementation_id IN (
SELECT implementation_id
FROM implementations
JOIN languages USING (language_id)
WHERE languages.identifier = 'perl'
);
DELETE FROM implementations WHERE implementation_id IN (
SELECT implementation_id
FROM implementations
JOIN languages USING (language_id)
WHERE languages.identifier = 'perl'
);