branch feature/8180 updated (5056a51 -> 316dc33)
This is an automated email from the git hooks/post-receive script. New change to branch feature/8180 in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git from 5056a51 Move migration to 3.907 version new 316dc33 Move migration to 3.907 version The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 316dc330252c3eae2cbecfd2c659e986d7c4b931 Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Mon Jun 27 17:12:09 2016 +0200 Move migration to 3.907 version Summary of changes: ...ion3_906.java => WorkingDbMigrationCallBackForVersion3_907.java} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) copy echobase-domain/src/main/java/fr/ifremer/echobase/persistence/migration/workingDb/{WorkingDbMigrationCallBackForVersion3_906.java => WorkingDbMigrationCallBackForVersion3_907.java} (81%) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/8180 in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git commit 316dc330252c3eae2cbecfd2c659e986d7c4b931 Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Mon Jun 27 17:12:09 2016 +0200 Move migration to 3.907 version --- .../WorkingDbMigrationCallBackForVersion3_907.java | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/echobase-domain/src/main/java/fr/ifremer/echobase/persistence/migration/workingDb/WorkingDbMigrationCallBackForVersion3_907.java b/echobase-domain/src/main/java/fr/ifremer/echobase/persistence/migration/workingDb/WorkingDbMigrationCallBackForVersion3_907.java new file mode 100644 index 0000000..996ed96 --- /dev/null +++ b/echobase-domain/src/main/java/fr/ifremer/echobase/persistence/migration/workingDb/WorkingDbMigrationCallBackForVersion3_907.java @@ -0,0 +1,33 @@ +package fr.ifremer.echobase.persistence.migration.workingDb; + +import org.nuiton.topia.persistence.TopiaException; +import org.nuiton.topia.persistence.support.TopiaSqlSupport; +import org.nuiton.version.Version; +import org.nuiton.version.Versions; + +import java.util.List; + +/** + * Created on 26/04/16. + * + * @author Julien Ruchaud - ruchaud@codelutin.com + * @since 4.0 + */ +public class WorkingDbMigrationCallBackForVersion3_907 extends WorkingDbMigrationCallBackForVersionSupport { + + @Override + public Version getVersion() { + return Versions.valueOf("3.907"); + } + + @Override + protected void prepareMigrationScript(TopiaSqlSupport sqlSupport, + List<String> queries, + boolean showSql, + boolean showProgression) throws TopiaException { + + // update the model structure + addSpecificScript("3.907-0-update-importLog-entityId.sql", queries); + } + +} -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm