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 124839b6ee32d4117ae29a30baf4425f28724361 Author: Kevin Morin <morin@codelutin.com> Date: Wed Feb 22 17:33:09 2017 +0100 fix migration on sqlserver --- .../V2_2_3_170214__add_colorize_invalid_demands_on_folders.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_2_3_170214__add_colorize_invalid_demands_on_folders.sql b/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_2_3_170214__add_colorize_invalid_demands_on_folders.sql index ef07110..5cecd44 100644 --- a/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_2_3_170214__add_colorize_invalid_demands_on_folders.sql +++ b/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_2_3_170214__add_colorize_invalid_demands_on_folders.sql @@ -1,8 +1,12 @@ -- add mail folder COLORIZEINVALIDDEMANDS alter table mailfolder add COLORIZEINVALIDDEMANDS bit; +GO update mailfolder set COLORIZEINVALIDDEMANDS = 1 where parent is null; +GO -- add mail folder lockedDemandsOpenableInReadOnly alter table mailfolder add lockedDemandsOpenableInReadOnly bit; +GO update mailfolder set lockedDemandsOpenableInReadOnly = 0 where parent is null; +GO -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.