From 92db5a5bf072f06753b574efa2d08f74fac179d8 Mon Sep 17 00:00:00 2001 From: Daniel Ellermann Date: Tue, 4 Mar 2014 19:58:58 +0100 Subject: [PATCH] Issue #36 I fix issue #36 (purchase invoice item description too short) by changing the type of column "description" to "longtext". --- application.properties | 6 ++--- grails-app/migrations/bugfixes-002.xml | 35 ++++++++++++++++++++++++++ grails-app/migrations/changelog.groovy | 3 ++- 3 files changed, 40 insertions(+), 4 deletions(-) create mode 100644 grails-app/migrations/bugfixes-002.xml diff --git a/application.properties b/application.properties index 4c587656..e4d651bb 100644 --- a/application.properties +++ b/application.properties @@ -1,7 +1,7 @@ #Grails Metadata file -#Tue Mar 04 18:34:10 CET 2014 -app.buildDate=2014-03-04T18\:34\:10+0100 -app.buildNumber=6054 +#Tue Mar 04 18:58:02 CET 2014 +app.buildDate=2014-03-04T18\:58\:02+0100 +app.buildNumber=6055 app.buildProfile=development app.grails.version=2.3.4.BUILD-SNAPSHOT app.name=springcrm diff --git a/grails-app/migrations/bugfixes-002.xml b/grails-app/migrations/bugfixes-002.xml new file mode 100644 index 00000000..26c1cca4 --- /dev/null +++ b/grails-app/migrations/bugfixes-002.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + diff --git a/grails-app/migrations/changelog.groovy b/grails-app/migrations/changelog.groovy index 56577261..053d9a66 100644 --- a/grails-app/migrations/changelog.groovy +++ b/grails-app/migrations/changelog.groovy @@ -1,7 +1,7 @@ /* * changelog.groovy * - * Copyright (c) 2011-2013, Daniel Ellermann + * Copyright (c) 2011-2014, Daniel Ellermann * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -29,4 +29,5 @@ databaseChangeLog = { include file: 'helpdesk.xml' include file: 'helpdesk-address.xml' include file: 'person-title.xml' + include file: 'bugfixes-002.xml' }