pastebin/migrations/2019-09-19-100046_c/down.sql

14 lines
389 B
MySQL
Raw Normal View History

2019-09-19 10:08:17 +00:00
DELETE FROM implementation_wrappers WHERE implementation_id IN (
SELECT implementation_id
FROM implementations
JOIN languages USING (language_id)
WHERE languages.identifier = 'c'
);
DELETE FROM implementations WHERE implementation_id IN (
SELECT implementation_id
FROM implementations
JOIN languages USING (language_id)
WHERE languages.identifier = 'c'
);