New feature: Course enrollable control with date range

This commit is contained in:
patrickslee
2005-10-04 01:59:19 +00:00
parent 1910d66ce9
commit f89033b111
10 changed files with 107 additions and 2 deletions
+4 -1
View File
@@ -52,7 +52,10 @@ CREATE TABLE prefix_course (
restrictmodules integer NOT NULL default '0',
expirynotify integer NOT NULL default '0',
expirythreshold integer NOT NULL default '0',
notifystudents integer NOT NULL default '0'
notifystudents integer NOT NULL default '0',
enrollable integer NOT NULL default '1',
enrolstartdate integer NOT NULL default '0',
enrolenddate integer NOT NULL default '0'
);
CREATE UNIQUE INDEX prefix_course_category_sortorder_uk ON prefix_course (category,sortorder);