Index: lams_common/src/java/org/lamsfoundation/lams/dbupdates/patch02030200_updateTo232.sql =================================================================== diff -u --- lams_common/src/java/org/lamsfoundation/lams/dbupdates/patch02030200_updateTo232.sql (revision 0) +++ lams_common/src/java/org/lamsfoundation/lams/dbupdates/patch02030200_updateTo232.sql (revision f0be241803ba3daa4ca148e2caf249c5e7ab9071) @@ -0,0 +1,12 @@ +-- SQL statements to set the database/lams version at 2.3.2 + +-- Turn off autocommit, so nothing is committed if there is an error +SET AUTOCOMMIT = 0; + +update lams_configuration set config_value='2.3.2' where config_key='Version'; +update lams_configuration set config_value='2.3.2.200908280000' where config_key='LearnerClientVersion' OR config_key='ServerVersionNumber' OR config_key='MonitorClientVersion' OR config_key='AuthoringClientVersion'; +update lams_configuration set config_value='2009-08-28' where config_key='DictionaryDateCreated'; + +-- If there were no errors, commit and restore autocommit to on +COMMIT; +SET AUTOCOMMIT = 1; \ No newline at end of file