Show
Ignore:
Timestamp:
08/23/10 20:55:35 (21 months ago)
Author:
gnum
Message:

References #96, facilitators can now be added to course. Still need to check it all again and see if everything is working well. NB! This will require additional table declared in edufeedr_tables.sql

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/edufeedr_tables.sql

    r93 r139  
    2727        PRIMARY KEY (id) 
    2828) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     29 
     30CREATE TABLE IF NOT EXISTS prefix_edufeedr_course_facilitators ( 
     31        id bigint(20) unsigned NOT NULL auto_increment, 
     32        course_guid bigint(20) unsigned NOT NULL, 
     33        user_guid bigint(20) unsigned NOT NULL, 
     34        PRIMARY KEY (id) 
     35) ENGINE=MyISAM DEFAULT CHARSET=utf8;