Index: lams_common/db/sql/create_sharedlesson_tables.sql =================================================================== RCS file: /usr/local/cvsroot/lams_common/db/sql/Attic/create_sharedlesson_tables.sql,v diff -u -r1.1.2.2 -r1.1.2.3 --- lams_common/db/sql/create_sharedlesson_tables.sql 1 Jun 2007 04:51:48 -0000 1.1.2.2 +++ lams_common/db/sql/create_sharedlesson_tables.sql 29 Jun 2007 06:55:30 -0000 1.1.2.3 @@ -25,3 +25,15 @@ PRIMARY KEY (`sid`) ) TYPE=InnoDB; +-- +-- Table structure for table `lams_lesson_fed` +-- +DROP TABLE IF EXISTS `lams_lesson_fed`; +CREATE TABLE `lams_lesson_fed` ( + `sid` int(11) NOT NULL auto_increment, + `server_sid` int(11) NOT NULL, + `org_id` bigint(20) NOT NULL, + `ext_lesson_id` bigint(20) NOT NULL, + `ext_lesson_name` varchar(255) NOT NULL, + PRIMARY KEY (`sid`) +) TYPE=InnoDB;