This is an automated email from the git hooks/post-receive script. New commit to branch feature/7421 in repository faxtomail. See http://git.codelutin.com/faxtomail.git commit 55ff99356243391cef694189cf60b907069922da Author: Kevin Morin <morin@codelutin.com> Date: Mon Aug 31 17:07:53 2015 +0200 migration #7421 --- ...V1_6_0_150831__add_attributes_for_less_important_attachments.sql | 5 +++++ ...V1_6_0_150831__add_attributes_for_less_important_attachments.sql | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/faxtomail-service/src/main/resources/db/migration/h2/V1_6_0_150831__add_attributes_for_less_important_attachments.sql b/faxtomail-service/src/main/resources/db/migration/h2/V1_6_0_150831__add_attributes_for_less_important_attachments.sql new file mode 100644 index 0000000..097ae91 --- /dev/null +++ b/faxtomail-service/src/main/resources/db/migration/h2/V1_6_0_150831__add_attributes_for_less_important_attachments.sql @@ -0,0 +1,5 @@ +alter table attachment add inlineAttachment boolean; +alter table attachment add lessImportant boolean; + +update attachment set inlineAttachment = 'f'; +update attachment set lessImportant = 'f'; \ No newline at end of file diff --git a/faxtomail-service/src/main/resources/db/migration/sqlserver/V1_6_0_150831__add_attributes_for_less_important_attachments.sql b/faxtomail-service/src/main/resources/db/migration/sqlserver/V1_6_0_150831__add_attributes_for_less_important_attachments.sql new file mode 100644 index 0000000..be4417c --- /dev/null +++ b/faxtomail-service/src/main/resources/db/migration/sqlserver/V1_6_0_150831__add_attributes_for_less_important_attachments.sql @@ -0,0 +1,6 @@ +alter table attachment add inlineAttachment bit; +alter table attachment add lessImportant bit; +GO + +update attachment set inlineAttachment = 0; +update attachment set lessImportant = 0; \ No newline at end of file -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.