|
Revision 3727, 0.7 kB
(checked in by tmdugan, 10 months ago)
|
-- chica
* cleaned up psf_statistics and added pws_statistics
* added study_attribute and study_attribute_value tables
|
| Line | |
|---|
| 1 |
<?xml version="1.0"?> |
|---|
| 2 |
<!DOCTYPE hibernate-mapping PUBLIC |
|---|
| 3 |
"-//Hibernate/Hibernate Mapping DTD 3.0//EN" |
|---|
| 4 |
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" > |
|---|
| 5 |
|
|---|
| 6 |
<hibernate-mapping package="org.openmrs.module.chica"> |
|---|
| 7 |
|
|---|
| 8 |
<class name="org.openmrs.module.chica.hibernateBeans.StudyAttributeValue" table="chica_study_attribute_value"> |
|---|
| 9 |
|
|---|
| 10 |
<id name="studyAttributeValueId" type="java.lang.Integer" column="study_attribute_value_id"> |
|---|
| 11 |
<generator class="native" /> |
|---|
| 12 |
</id> |
|---|
| 13 |
|
|---|
| 14 |
<property name="studyId" type="java.lang.Integer" column="study_id" /> |
|---|
| 15 |
<property name="studyAttributeId" type="java.lang.Integer" column="study_attribute_id" /> |
|---|
| 16 |
<property name="value" type="java.lang.String" column="value" /> |
|---|
| 17 |
</class> |
|---|
| 18 |
|
|---|
| 19 |
</hibernate-mapping> |
|---|