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

Thomas Oulevey 4cda50
-- upgrade script to migrate the Koji database schema
Thomas Oulevey 4cda50
-- from version 1.13 to 1.14
Thomas Oulevey 4cda50
Thomas Oulevey 4cda50
BEGIN;
Thomas Oulevey 4cda50
Thomas Oulevey 4cda50
-- drop unused log_messages table
Thomas Oulevey 4cda50
DROP TABLE log_messages;
Thomas Oulevey 4cda50
Thomas Oulevey 4cda50
-- add yaml and xjb file type in archivetypes
Thomas Oulevey 4cda50
insert into archivetypes (name, description, extensions) values ('yaml', 'YAML Ain''t Markup Language', 'yaml yml');
Thomas Oulevey 4cda50
insert into archivetypes (name, description, extensions) values ('xjb', 'JAXB(Java Architecture for XML Binding) Binding Customization File', 'xjb');
Thomas Oulevey 4cda50
Thomas Oulevey 4cda50
COMMIT;