Index: lams_common/db/model/lams_11.clay
===================================================================
RCS file: /usr/local/cvsroot/lams_common/db/model/lams_11.clay,v
diff -u -r1.93 -r1.94
--- lams_common/db/model/lams_11.clay 12 Nov 2007 23:30:47 -0000 1.93
+++ lams_common/db/model/lams_11.clay 16 Jan 2008 05:09:27 -0000 1.94
@@ -5327,6 +5327,13 @@
+
+
+
+
+
+
+
@@ -5717,8 +5724,8 @@
-
+
Index: lams_common/db/sql/create_lams_11_tables.sql
===================================================================
RCS file: /usr/local/cvsroot/lams_common/db/sql/create_lams_11_tables.sql,v
diff -u -r1.108 -r1.109
--- lams_common/db/sql/create_lams_11_tables.sql 12 Nov 2007 23:30:47 -0000 1.108
+++ lams_common/db/sql/create_lams_11_tables.sql 16 Jan 2008 05:01:32 -0000 1.109
@@ -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 1.2 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
===================================================================
RCS file: /usr/local/cvsroot/lams_common/db/sql/updatescripts/Attic/alter_21_groupings_fckeditor.sql,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ lams_common/db/sql/updatescripts/alter_21_groupings_fckeditor.sql 16 Jan 2008 05:01:05 -0000 1.1
@@ -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