summaryrefslogtreecommitdiffstats
path: root/migrations/2021-01-07-122618_dedicated-releases-table/down.sql
blob: 3eaa8b9002ca82e9e78f1e99c37846ea260310a6 (plain)
1
2
3
4
5
6
7
-- This file should undo anything in `up.sql`
ALTER TABLE
    artifacts
ADD COLUMN
    released boolean NOT NULL;

DROP TABLE releases;