#575 add xjb and yaml type in archivetypes table
Merged 6 years ago by mikem. Opened 6 years ago by julian8628.
julian8628/koji archive-type  into  master

@@ -6,4 +6,8 @@ 

  -- drop unused log_messages table

  DROP TABLE log_messages;

  

+ -- add yaml and xjb file type in archivetypes

+ insert into archivetypes (name, description, extensions) values ('yaml', 'YAML Ain''t Markup Language', 'yaml yml');

+ insert into archivetypes (name, description, extensions) values ('xjb', 'JAXB(Java Architecture for XML Binding) Binding Customization File', 'xjb');

+ 

  COMMIT;

file modified
+2
@@ -786,6 +786,8 @@ 

  insert into archivetypes (name, description, extensions) values ('liveimg-squashfs', 'liveimg compatible squashfs image', 'liveimg.squashfs');

  insert into archivetypes (name, description, extensions) values ('tlb', 'OLE type library file', 'tlb');

  insert into archivetypes (name, description, extensions) values ('jnilib', 'Java Native Interface library', 'jnilib');

+ insert into archivetypes (name, description, extensions) values ('yaml', 'YAML Ain''t Markup Language', 'yaml yml');

+ insert into archivetypes (name, description, extensions) values ('xjb', 'JAXB(Java Architecture for XML Binding) Binding Customization File', 'xjb');

  

  

  -- Do we want to enforce a constraint that a build can only generate one

rebased

6 years ago

Pull-Request has been merged by mikem

6 years ago