branch feature/8180 updated (85d1ca3 -> 5056a51)
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 85d1ca3 Improve the perfomance on search duplicate cell (ref #8165) new 76dd036 Improve the perfomance on search duplicate cell (ref #8165) new 5056a51 Move migration to 3.907 version The 2 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 5056a51e19a1e0b9cef44370233036a7653ff753 Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Mon Jun 27 16:32:51 2016 +0200 Move migration to 3.907 version commit 76dd036a80297dc9969d89836c29514f0cd13eee Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Mon Jun 27 16:31:28 2016 +0200 Improve the perfomance on search duplicate cell (ref #8165) Summary of changes: .../WorkingDbMigrationCallBackForVersion3_906.java | 2 +- .../WorkingDbMigrationCallBackForVersion3_908.java | 33 ---------------------- ...906-add-indexes.sql => 3.906-0-add-indexes.sql} | 0 ...d.sql => 3.907-0-update-importLog-entityId.sql} | 0 ...d.sql => 3.907-0-update-importLog-entityId.sql} | 0 echobase-domain/src/main/xmi/echobase.properties | 2 +- 6 files changed, 2 insertions(+), 35 deletions(-) delete mode 100644 echobase-domain/src/main/java/fr/ifremer/echobase/persistence/migration/workingDb/WorkingDbMigrationCallBackForVersion3_908.java rename echobase-domain/src/main/resources/migration/workingDb/{3.906-add-indexes.sql => 3.906-0-add-indexes.sql} (100%) rename echobase-domain/src/main/resources/migration/workingDb/h2/{3.906-0-update-importLog-entityId.sql => 3.907-0-update-importLog-entityId.sql} (100%) rename echobase-domain/src/main/resources/migration/workingDb/pg/{3.906-0-update-importLog-entityId.sql => 3.907-0-update-importLog-entityId.sql} (100%) -- 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 76dd036a80297dc9969d89836c29514f0cd13eee Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Mon Jun 27 16:31:28 2016 +0200 Improve the perfomance on search duplicate cell (ref #8165) --- .../migration/workingDb/WorkingDbMigrationCallBackForVersion3_906.java | 2 +- .../workingDb/{3.906-add-indexes.sql => 3.906-0-add-indexes.sql} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/echobase-domain/src/main/java/fr/ifremer/echobase/persistence/migration/workingDb/WorkingDbMigrationCallBackForVersion3_906.java b/echobase-domain/src/main/java/fr/ifremer/echobase/persistence/migration/workingDb/WorkingDbMigrationCallBackForVersion3_906.java index 70d8a8f..f844659 100644 --- a/echobase-domain/src/main/java/fr/ifremer/echobase/persistence/migration/workingDb/WorkingDbMigrationCallBackForVersion3_906.java +++ b/echobase-domain/src/main/java/fr/ifremer/echobase/persistence/migration/workingDb/WorkingDbMigrationCallBackForVersion3_906.java @@ -27,7 +27,7 @@ public class WorkingDbMigrationCallBackForVersion3_906 extends WorkingDbMigratio boolean showProgression) throws TopiaException { // update the model structure - addScript("3.906-add-indexes.sql", queries); + addScript("3.906-0-add-indexes.sql", queries); } } diff --git a/echobase-domain/src/main/resources/migration/workingDb/3.906-add-indexes.sql b/echobase-domain/src/main/resources/migration/workingDb/3.906-0-add-indexes.sql similarity index 100% rename from echobase-domain/src/main/resources/migration/workingDb/3.906-add-indexes.sql rename to echobase-domain/src/main/resources/migration/workingDb/3.906-0-add-indexes.sql -- 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 5056a51e19a1e0b9cef44370233036a7653ff753 Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Mon Jun 27 16:32:51 2016 +0200 Move migration to 3.907 version --- .../WorkingDbMigrationCallBackForVersion3_908.java | 33 ---------------------- ...d.sql => 3.907-0-update-importLog-entityId.sql} | 0 ...d.sql => 3.907-0-update-importLog-entityId.sql} | 0 echobase-domain/src/main/xmi/echobase.properties | 2 +- 4 files changed, 1 insertion(+), 34 deletions(-) diff --git a/echobase-domain/src/main/java/fr/ifremer/echobase/persistence/migration/workingDb/WorkingDbMigrationCallBackForVersion3_908.java b/echobase-domain/src/main/java/fr/ifremer/echobase/persistence/migration/workingDb/WorkingDbMigrationCallBackForVersion3_908.java deleted file mode 100644 index 39e9777..0000000 --- a/echobase-domain/src/main/java/fr/ifremer/echobase/persistence/migration/workingDb/WorkingDbMigrationCallBackForVersion3_908.java +++ /dev/null @@ -1,33 +0,0 @@ -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_908 extends WorkingDbMigrationCallBackForVersionSupport { - - @Override - public Version getVersion() { - return Versions.valueOf("3.906"); - } - - @Override - protected void prepareMigrationScript(TopiaSqlSupport sqlSupport, - List<String> queries, - boolean showSql, - boolean showProgression) throws TopiaException { - - // update the model structure - addSpecificScript("3.906-0-update-importLog-entityId.sql", queries); - } - -} diff --git a/echobase-domain/src/main/resources/migration/workingDb/h2/3.906-0-update-importLog-entityId.sql b/echobase-domain/src/main/resources/migration/workingDb/h2/3.907-0-update-importLog-entityId.sql similarity index 100% rename from echobase-domain/src/main/resources/migration/workingDb/h2/3.906-0-update-importLog-entityId.sql rename to echobase-domain/src/main/resources/migration/workingDb/h2/3.907-0-update-importLog-entityId.sql diff --git a/echobase-domain/src/main/resources/migration/workingDb/pg/3.906-0-update-importLog-entityId.sql b/echobase-domain/src/main/resources/migration/workingDb/pg/3.907-0-update-importLog-entityId.sql similarity index 100% rename from echobase-domain/src/main/resources/migration/workingDb/pg/3.906-0-update-importLog-entityId.sql rename to echobase-domain/src/main/resources/migration/workingDb/pg/3.907-0-update-importLog-entityId.sql diff --git a/echobase-domain/src/main/xmi/echobase.properties b/echobase-domain/src/main/xmi/echobase.properties index 1e9d25a..687f0a6 100644 --- a/echobase-domain/src/main/xmi/echobase.properties +++ b/echobase-domain/src/main/xmi/echobase.properties @@ -23,7 +23,7 @@ model.tagValue.notGenerateToString=true model.tagValue.generateOperatorForDAOHelper=true -model.tagValue.version=3.906 +model.tagValue.version=3.907 model.tagValue.generatePropertyChangeSupport=false model.tagValue.generateBooleanGetMethods=false model.tagValue.indexForeignKeys=true -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm