- Timestamp:
- 05/24/08 14:37:02 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/trunk/metadata/api/hibernate/org/openmrs/api/db/hibernate/Cohort.hbm.xml
r4222 r4358 18 18 column="description" not-null="true" length="1000" /> 19 19 20 <set name="memberIds" cascade="none" lazy=" false" table="cohort_member">20 <set name="memberIds" cascade="none" lazy="true" table="cohort_member"> 21 21 <key column="cohort_id"/> 22 22 <element column="patient_id" type="integer"/> … … 31 31 <property name="voidReason" type="java.lang.String" 32 32 column="void_reason" length="255" /> 33 <property name="dateChanged" type="java.util.Date" 34 column="date_changed" not-null="true" length="19" /> 33 35 34 36 <!-- bi-directional many-to-one association to User --> … … 40 42 <column name="voided_by" /> 41 43 </many-to-one> 44 <!-- bi-directional many-to-one association to User --> 45 <many-to-one name="changedBy" class="User"> 46 <column name="changed_by" /> 47 </many-to-one> 42 48 43 49 </class>