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;
|