This is an automated email from the git hooks/post-receive script. New commit to branch feature/9094_always_open_demand_in_edition in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit 667f86636e3ed94c9335644c089beb9f59cce800 Author: Kevin Morin <morin@codelutin.com> Date: Thu Mar 16 11:55:03 2017 +0100 refs #9094 ajout de la conf mustTakeToEditDemand dans les dossiers --- faxtomail-persistence/src/main/xmi/faxtomail.zargo | Bin 35417 -> 35474 bytes .../h2/V2_4_170316_2__add_mustTakeToEditDemand.sql | 4 ++++ .../V2_4_170316_2__add_mustTakeToEditDemand.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 f17aeea..320a7fe 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_170316_2__add_mustTakeToEditDemand.sql b/faxtomail-service/src/main/resources/db/migration/h2/V2_4_170316_2__add_mustTakeToEditDemand.sql new file mode 100644 index 0000000..3a70d7a --- /dev/null +++ b/faxtomail-service/src/main/resources/db/migration/h2/V2_4_170316_2__add_mustTakeToEditDemand.sql @@ -0,0 +1,4 @@ +-- add mustTakeToEditDemand + +alter table mailfolder add mustTakeToEditDemand boolean; +update mailfolder set mustTakeToEditDemand = 't' where parent is null; \ No newline at end of file diff --git a/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_4_170316_2__add_mustTakeToEditDemand.sql b/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_4_170316_2__add_mustTakeToEditDemand.sql new file mode 100644 index 0000000..18cb799 --- /dev/null +++ b/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_4_170316_2__add_mustTakeToEditDemand.sql @@ -0,0 +1,6 @@ +-- add mustTakeToEditDemand + +alter table mailfolder add mustTakeToEditDemand bit; +GO +update mailfolder set mustTakeToEditDemand = 1 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>.