Index: lams_common/db/sql/updatescripts/alter_21_fixgroupings.sql =================================================================== RCS file: /usr/local/cvsroot/lams_common/db/sql/updatescripts/Attic/alter_21_fixgroupings.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/db/sql/updatescripts/alter_21_fixgroupings.sql 14 Jan 2008 05:05:32 -0000 1.1 @@ -0,0 +1,6 @@ +-- FOR LAMS 2.1 Release: See LDEV-1488 +-- We found after upgrading demo to LAMS 2.1 that some of the existing designs had the group activities missing +-- their system tool id. This script will fix this. + +update lams_learning_activity set system_tool_id = 1 where learning_activity_type_id = '2' and system_tool_id is null; +