← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 22132: Category resource table, cat option combo column max length set to match object table.

 

------------------------------------------------------------
revno: 22132
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Thu 2016-03-03 16:25:42 +0100
message:
  Category resource table, cat option combo column max length set to match object table.
modified:
  dhis-2/dhis-services/dhis-service-administration/src/main/java/org/hisp/dhis/resourcetable/table/CategoryResourceTable.java


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-services/dhis-service-administration/src/main/java/org/hisp/dhis/resourcetable/table/CategoryResourceTable.java'
--- dhis-2/dhis-services/dhis-service-administration/src/main/java/org/hisp/dhis/resourcetable/table/CategoryResourceTable.java	2016-01-04 02:27:49 +0000
+++ dhis-2/dhis-services/dhis-service-administration/src/main/java/org/hisp/dhis/resourcetable/table/CategoryResourceTable.java	2016-03-03 15:25:42 +0000
@@ -59,7 +59,7 @@
     {
         String statement = "create table " + getTempTableName() + " (" +
             "categoryoptioncomboid integer not null, " +
-            "categoryoptioncomboname varchar(230), ";
+            "categoryoptioncomboname varchar(255), ";
         
         for ( DataElementCategory category : objects )
         {