Update of /cvsroot/aimmath/moodle/mod/math_assignment/db
In directory sc8-pr-cvs1:/tmp/cvs-serv28723/mod/math_assignment/db
Modified Files:
mysql.php mysql.sql
Log Message:
Removed 'student password' server setting and updated to gaining access with the subject password.
Index: mysql.php
===================================================================
RCS file: /cvsroot/aimmath/moodle/mod/math_assignment/db/mysql.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** mysql.php 20 Sep 2003 19:13:43 -0000 1.7
--- mysql.php 22 Sep 2003 21:03:55 -0000 1.8
***************
*** 10,13 ****
--- 10,16 ----
table_column("math_assignment", "", "focus", "tinyint", "1", "unsigned", "1");
}
+ if ($oldversion < 2003092222) {
+ execute_sql("ALTER TABLE `{$CFG->prefix}math_assignment_server` DROP `student_passwd`");
+ }
return true;
Index: mysql.sql
===================================================================
RCS file: /cvsroot/aimmath/moodle/mod/math_assignment/db/mysql.sql,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** mysql.sql 20 Sep 2003 19:13:43 -0000 1.6
--- mysql.sql 22 Sep 2003 21:03:55 -0000 1.7
***************
*** 37,41 ****
`name` varchar(255) NOT NULL default '',
`address` varchar(255) NOT NULL default '',
- `student_passwd` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`),
UNIQUE `NAME` (`name`)
--- 37,40 ----
|