branch develop updated (dee3815 -> 48905b7)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git from dee3815 Merge branch 'feature/9106_deplacement_parametrage_actions_invalides_dans_arborescence' into develop new 48905b7 fix migration 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 48905b75fc63363f1cd59c9cd84fef5372321f34 Author: Kevin Morin <morin@codelutin.com> Date: Tue Mar 14 18:55:01 2017 +0100 fix migration Summary of changes: .../V2_2_3_170314__move_invalidformactions_to_folders.sql | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) -- 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 develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit 48905b75fc63363f1cd59c9cd84fef5372321f34 Author: Kevin Morin <morin@codelutin.com> Date: Tue Mar 14 18:55:01 2017 +0100 fix migration --- .../V2_2_3_170314__move_invalidformactions_to_folders.sql | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_2_3_170314__move_invalidformactions_to_folders.sql b/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_2_3_170314__move_invalidformactions_to_folders.sql index 9d9555a..2dc999f 100644 --- a/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_2_3_170314__move_invalidformactions_to_folders.sql +++ b/faxtomail-service/src/main/resources/db/migration/sqlserver/V2_2_3_170314__move_invalidformactions_to_folders.sql @@ -1,10 +1,15 @@ alter table mailfolder add useCurrentLevelInvalidFormDisabledActions bit; +GO alter table mailfolder add invalidFormDisabledActions varchar(MAX); +GO update mailfolder set useCurrentLevelInvalidFormDisabledActions = 0; +GO update mailfolder set useCurrentLevelInvalidFormDisabledActions = 1, invalidFormDisabledActions = (select invalidFormDisabledActions from configuration) where parent is null; +GO -alter table configuration drop invalidFormDisabledActions; \ No newline at end of file +alter table configuration drop column invalidFormDisabledActions; +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>.
participants (1)
-
codelutin.com scm