Update of /cvsroot/aimmath/moodle/mod/math_assignment/db
In directory sc8-pr-cvs1:/tmp/cvs-serv12173/mod/math_assignment/db
Modified Files:
mysql.php mysql.sql
Log Message:
implemented solution sheet time. Also some changes in pdfgen.
Index: mysql.php
===================================================================
RCS file: /cvsroot/aimmath/moodle/mod/math_assignment/db/mysql.php,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** mysql.php 25 Sep 2003 22:14:09 -0000 1.12
--- mysql.php 5 Oct 2003 22:54:15 -0000 1.13
***************
*** 7,10 ****
--- 7,13 ----
global $CFG;
+ if ($oldversion < 2003100501) {
+ table_column("math_assignment", "", "solutiontime", "int", "10", "unsigned", "0");
+ }
if ($oldversion < 2003092001) {
table_column("math_assignment", "", "focus", "tinyint", "1", "unsigned", "1");
Index: mysql.sql
===================================================================
RCS file: /cvsroot/aimmath/moodle/mod/math_assignment/db/mysql.sql,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** mysql.sql 25 Sep 2003 22:14:09 -0000 1.11
--- mysql.sql 5 Oct 2003 22:54:15 -0000 1.12
***************
*** 20,23 ****
--- 20,24 ----
aimgrade int(10) unsigned NOT NULL default '0',
timedue int(10) unsigned NOT NULL default '0',
+ solutiontime int(10) unsigned NOT NULL default '0',
timemodified int(10) unsigned NOT NULL default '0',
PRIMARY KEY (id)
|