Update of /cvsroot/aimmath/moodle/mod/math_assignment/db
In directory sc8-pr-cvs1:/tmp/cvs-serv24998/mod/math_assignment/db
Modified Files:
mysql.php mysql.sql
Log Message:
Added 'email students' button to view.php for markers / lecturers to press once the scripts have been returned.
Index: mysql.php
===================================================================
RCS file: /cvsroot/aimmath/moodle/mod/math_assignment/db/mysql.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** mysql.php 24 Sep 2003 13:22:22 -0000 1.10
--- mysql.php 25 Sep 2003 15:02:23 -0000 1.11
***************
*** 18,22 ****
}
if ($oldversion < 2003092414) {
! execute_sql("ALTER TABLE `{$CFG->prefix}math_assignment` CHANGE `focus` `aimfocus` tinyint(1) unsigned NOT NULL default '1' AFTER aimquiz");
}
--- 18,25 ----
}
if ($oldversion < 2003092414) {
! execute_sql("ALTER TABLE `{$CFG->prefix}math_assignment` CHANGE `focus` `aimfocus` tinyint(1) unsigned NOT NULL default '1' AFTER `aimquiz`");
! }
! if ($oldversion < 2003092516) {
! execute_sql("ALTER TABLE `{$CFG->prefix}math_assignment` ADD `papersheetsreturned` tinyint(1) NOT NULL default '0' AFTER `solutionsisurl`");
}
Index: mysql.sql
===================================================================
RCS file: /cvsroot/aimmath/moodle/mod/math_assignment/db/mysql.sql,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** mysql.sql 24 Sep 2003 13:22:22 -0000 1.9
--- mysql.sql 25 Sep 2003 15:02:23 -0000 1.10
***************
*** 14,17 ****
--- 14,18 ----
solutions varchar(255) NOT NULL default '',
solutionsisurl tinyint(1) NOT NULL default '1',
+ papersheetsreturned tinyint(1) NOT NULL default '0',
aimquiz varchar(255) NOT NULL default '',
aimfocus tinyint(1) unsigned NOT NULL default '1',
|