This reverts commitb19f1760bf, reversing changes made tob3f548f803. 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
9 lines
157 B
PL/PgSQL
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;
|