diff --git a/ccm-cms/src/com/arsdigita/cms/contenttypes/upgrades/Upgrade664to665.java b/ccm-cms/src/com/arsdigita/cms/contenttypes/upgrades/Upgrade664to665.java new file mode 100644 index 000000000..417d40108 --- /dev/null +++ b/ccm-cms/src/com/arsdigita/cms/contenttypes/upgrades/Upgrade664to665.java @@ -0,0 +1,33 @@ +package com.arsdigita.cms.contenttypes.upgrades; + +import com.arsdigita.util.cmd.Program; +import org.apache.commons.cli.CommandLine; + +/** + * + * @author Jens Pelzetter + * @version $Id$ + */ +public class Upgrade664to665 extends Program { + + public Upgrade664to665() { + super("Upgrade664to665", "1.0.0", "", true, true); + } + + @Override + protected void doRun(CommandLine cmdLine) { + new CreateContactBundles().doUpgrade(); + new CreateOrgaUnitBundles().doUpgrade(); + new CreatePersonBundles().doUpgrade(); + new GenericContactGenericPersonAssocUpgrade().doUpgrade(); + new GenericOrgaUnitGenericContactAssocUpgrade().doUpgrade(); + new GenericOrgaUnitGenericOrgaUnitAssocUpgrade().doUpgrade(); + new GenericOrgaUnitGenericPersonAssocUpgrade().doUpgrade(); + + } + + public static void main(final String[] args) { + new Upgrade664to665().run(args); + } + +} diff --git a/ccm-sci-publications/src/ccm-sci-publications.upgrade b/ccm-sci-publications/src/ccm-sci-publications.upgrade index a1951cbf2..8d3ebcd73 100644 --- a/ccm-sci-publications/src/ccm-sci-publications.upgrade +++ b/ccm-sci-publications/src/ccm-sci-publications.upgrade @@ -6,32 +6,6 @@