dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #30051
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 15243: Not null constraint on category option group short name
------------------------------------------------------------
revno: 15243
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2014-05-12 22:45:03 +0200
message:
Not null constraint on category option group short name
modified:
dhis-2/dhis-services/dhis-service-core/src/main/resources/org/hisp/dhis/dataelement/hibernate/CategoryOptionGroup.hbm.xml
--
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-core/src/main/resources/org/hisp/dhis/dataelement/hibernate/CategoryOptionGroup.hbm.xml'
--- dhis-2/dhis-services/dhis-service-core/src/main/resources/org/hisp/dhis/dataelement/hibernate/CategoryOptionGroup.hbm.xml 2014-02-12 10:52:22 +0000
+++ dhis-2/dhis-services/dhis-service-core/src/main/resources/org/hisp/dhis/dataelement/hibernate/CategoryOptionGroup.hbm.xml 2014-05-12 20:45:03 +0000
@@ -17,7 +17,7 @@
<property name="name" column="name" not-null="true" unique="true" length="230" />
- <property name="shortName" column="shortname" unique="true" length="50" />
+ <property name="shortName" column="shortname" not-null="true" unique="true" length="50" />
<set name="members" table="categoryoptiongroupmembers">
<cache usage="read-write" />