Index: lams_common/db/sql/create_lams_11_tables.sql =================================================================== diff -u -r07578aaa7f526c0c1b537c127cf5f88e0410d472 -r7bbde598d2ac8811abb59813b3da4ac67349fe66 --- lams_common/db/sql/create_lams_11_tables.sql (.../create_lams_11_tables.sql) (revision 07578aaa7f526c0c1b537c127cf5f88e0410d472) +++ lams_common/db/sql/create_lams_11_tables.sql (.../create_lams_11_tables.sql) (revision 7bbde598d2ac8811abb59813b3da4ac67349fe66) @@ -142,6 +142,7 @@ , country_iso_code VARCHAR(2) , description VARCHAR(255) NOT NULL , direction VARCHAR(3) NOT NULL + , fckeditor_code VARCHAR(10) , PRIMARY KEY (locale_id) )TYPE=InnoDB; ALTER TABLE lams_supported_locale COMMENT='Describes the valid language/country combinations.'; Fisheye: Tag 7bbde598d2ac8811abb59813b3da4ac67349fe66 refers to a dead (removed) revision in file `lams_common/db/sql/updatescripts/alter_21_fixgroupings.sql'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_common/db/sql/updatescripts/alter_21_groupings_fckeditor.sql =================================================================== diff -u --- lams_common/db/sql/updatescripts/alter_21_groupings_fckeditor.sql (revision 0) +++ lams_common/db/sql/updatescripts/alter_21_groupings_fckeditor.sql (revision 7bbde598d2ac8811abb59813b3da4ac67349fe66) @@ -0,0 +1,9 @@ +-- 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; + +-- See LDEV-1349 +alter table lams_supported_locale +ADD COLUMN fckeditor_code VARCHAR(10); \ No newline at end of file