schema upgrade script

This commit is contained in:
Mike McLean 2017-03-30 00:45:54 -04:00
parent 0b81c355f4
commit 43739e72f2

View file

@ -0,0 +1,9 @@
BEGIN;
-- from schema-update-dist-repos.sql
INSERT INTO permissions (name) VALUES ('image');
ALTER TABLE repo ADD COLUMN dist BOOLEAN DEFAULT 'false';
COMMIT;