debian-koji/docs/schema-upgrade-1.23-1.24.sql
Tomas Kopecek 3f71076eba Revert "PR#2576: db: add debian package archivetype"
This reverts commit b19f1760bf, reversing
changes made to b3f548f803.

We've agreed that adding new archivetypes should be done via API not by
default values in db.

Related: https://pagure.io/koji/issue/2575
Related: https://pagure.io/koji/pull-request/2576
2021-02-04 15:59:17 +01:00

9 lines
157 B
PL/PgSQL

-- upgrade script to migrate the Koji database schema
-- from version 1.23 to 1.24
BEGIN;
ALTER TABLE tag_external_repos ADD COLUMN arches TEXT;
COMMIT;