This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit bab2e8406503971362d49ed13710712525dfba29 Author: Kevin Morin <morin@codelutin.com> Date: Fri Mar 17 14:37:39 2017 +0100 refs #9105 ajout de la conf computeQuantitiesSubtotalsByState dans les dossiers --- faxtomail-persistence/src/main/xmi/faxtomail.zargo | Bin 35540 -> 35628 bytes ...317_1__add_computeQuantitiesSubtotalsByState.sql | 4 ++++ ...317_1__add_computeQuantitiesSubtotalsByState.sql | 6 ++++++ 3 files changed, 10 insertions(+) diff --git a/faxtomail-persistence/src/main/xmi/faxtomail.zargo b/faxtomail-persistence/src/main/xmi/faxtomail.zargo index 8b5e84b..ef2f72d 100644 Binary files a/faxtomail-persistence/src/main/xmi/faxtomail.zargo and b/faxtomail-persistence/src/main/xmi/faxtomail.zargo differ diff --git a/faxtomail-service/src/main/resources/db/migration/h2/V2_4_170317_1__add_computeQuantitiesSubtotalsByState.sql b/faxtomail-service/src/main/resources/db/migration/h2/V2_4_170317_1__add_computeQuantitiesSubtotalsByState.sql new file mode 100644 index 0000000..ed450b1 --- /dev/null +++ b/faxtomail-service/src/main/resources/db/migration/h2/V2_4_170317_1__add_computeQuantitiesSubtotalsByState.sql @@ -0,0 +1,4 @@ +-- add computeQuantitiesSubtotalsByState + +alter table mailfolder add computeQuantitiesSubtotalsByState boolean; +update mailfolder set computeQuantitiesSubtotalsByState = 'f' where parent is null; \ No newline at end of file diff --git a/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_4_170317_1__add_computeQuantitiesSubtotalsByState.sql b/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_4_170317_1__add_computeQuantitiesSubtotalsByState.sql new file mode 100644 index 0000000..0ff6d3b --- /dev/null +++ b/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_4_170317_1__add_computeQuantitiesSubtotalsByState.sql @@ -0,0 +1,6 @@ +-- add computeQuantitiesSubtotalsByState + +alter table mailfolder add computeQuantitiesSubtotalsByState bit; +GO +update mailfolder set computeQuantitiesSubtotalsByState = 0 where parent is null; +GO \ No newline at end of file -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.