Skip to content

Commit 6fde59e

Browse files
ssmusokeslubwama
authored andcommitted
Change the serialized_data column of the serialized_object table to UTF8 (#316)
* [maven-release-plugin] prepare for next development iteration Update data entry statistics version which does not require internet for connectivity Increased data integrity to the latest released version that includes export of the results to CSV and Excel Updated the reporting module to the latest released version Removed the TB_FOLLOWUP_ENCOUNTER which was merged into the TB_SUMMARY_ENCOUNTER Cleanup of unused metadata Fixed the query for linking the infants to mothers via the mother's ART number, through a test case that highlighted the error Updated coreapps and chart-search to released versions Added require options for the display widgets Added the require attribute to show dashboard widgets only when the conditions are met Upgraded coreapps to a snapshot that honors the require attribute Correct fix links to the summary pages and descriptions of the failures Updated the openmrs modules from snapshot to release version Updated the Reporting compatibility module with fixes to include death date Updated the change request for migrating ART Summary Page form id from 34 to 14, with a precondition in case the new form_id does not exist Increased the version of UgandaEMR reports to the latest development version Adding Service point to capture missing service points Added the name of the health center to the login page and header Revert "Adding Service point to capture missing service points" This reverts commit 134c098. * Updated UgandaEMR reports version to release 2.0.2 * Update the reports to the latest development version * Fix for reports not saving to the serialized table
1 parent 1bda3e8 commit 6fde59e

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

api/src/main/resources/liquibase.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,4 +179,13 @@
179179
select patient_identifier.patient_id, "164985",encounter.encounter_id,encounter.location_id,identifier,encounter.date_created,encounter.date_created,encounter.creator,UUID() from encounter inner JOIN patient_identifier on(encounter.patient_id=patient_identifier.patient_id) WHERE encounter_type=15 and patient_identifier.identifier_type=9
180180
</sql>
181181
</changeSet>
182+
<changeSet id="uganademr-10202017-2138" author="ssmusoke">
183+
<preConditions>
184+
<columnExists tableName="serialized_object" columnName="serialized_data" />
185+
</preConditions>
186+
<comment>Change column to utf8 to enable saving of multi-byte characters</comment>
187+
<sql>
188+
ALTER TABLE `serialized_object` MODIFY `serialized_data` MEDIUMTEXT CHARACTER SET utf8 NOT NULL;
189+
</sql>
190+
</changeSet>
182191
</databaseChangeLog>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<xformsVersion>4.3.9</xformsVersion>
106106

107107
<!-- core configuration library -->
108-
<ugandaemrReportsVersion>2.0.2</ugandaemrReportsVersion>
108+
<ugandaemrReportsVersion>2.0.3-SNAPSHOT</ugandaemrReportsVersion>
109109

110110
</properties>
111111

0 commit comments

Comments
 (0)