Blame scripts/migration/1.11-1.16.3/schema-upgrade-1.12-1.13.sql

Thomas Oulevey 4cda50
-- upgrade script to migrate the Koji database schema
Thomas Oulevey 4cda50
-- from version 1.12 to 1.13
Thomas Oulevey 4cda50
Thomas Oulevey 4cda50
BEGIN;
Thomas Oulevey 4cda50
Thomas Oulevey 4cda50
-- Change VARCHAR field for tag names to TEXT to allow longer tag names
Thomas Oulevey 4cda50
ALTER TABLE tag ALTER COLUMN name TYPE TEXT;
Thomas Oulevey 4cda50
Thomas Oulevey 4cda50
COMMIT;