missing comma

This commit is contained in:
Mike Bonnet 2009-01-20 10:26:33 -05:00
parent 252f5d4c38
commit 5925d542d8

View file

@ -417,7 +417,7 @@ create table tag_external_repos (
(active IS NULL AND revoke_event IS NOT NULL )
OR (active IS NOT NULL AND revoke_event IS NULL )),
PRIMARY KEY (create_event, tag_id, priority),
UNIQUE (tag_id, priority, active)
UNIQUE (tag_id, priority, active),
UNIQUE (tag_id, external_repo_id, active)
);