summaryrefslogtreecommitdiffstats
path: root/migrations/2020-12-14-113756_artifact_not_unique_by_path/down.sql
blob: c8bfe9d37655264f06e24ae3067159ba14bb2aff (plain)
1
2
3
4
5
6
7
-- This file should undo anything in `up.sql`
ALTER TABLE
    artifacts
ADD CONSTRAINT
    artifacts_path_key -- as generated by default for postgresql
    UNIQUE (path)