From: Juliette W. <jv...@us...> - 2005-06-17 10:55:01
|
Update of /cvsroot/stack/stack-1-0/scripts/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15612/scripts/install Modified Files: Tag: frontend_dev stackInstall.php Log Message: Fixed one of the problems. Changed quizID to quizid everywhere because I thought this might be the problem, need to decide on how to name things consistently. Index: stackInstall.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/scripts/install/stackInstall.php,v retrieving revision 1.10 retrieving revision 1.10.4.1 diff -C2 -d -r1.10 -r1.10.4.1 *** stackInstall.php 7 Jun 2005 09:35:15 -0000 1.10 --- stackInstall.php 17 Jun 2005 10:54:52 -0000 1.10.4.1 *************** *** 212,216 **** $qu = "CREATE TABLE IF NOT EXISTS quiz_question ( ID INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, ! quizID INT, questionID INT, qord INT ); "; --- 212,216 ---- $qu = "CREATE TABLE IF NOT EXISTS quiz_question ( ID INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, ! quizid INT, questionID INT, qord INT ); "; *************** *** 234,238 **** $qu = "CREATE TABLE IF NOT EXISTS quizAttempts ( attemptID INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, ! quizID int(11) default NULL, userID int(11) default NULL, Seed int(11) default NULL, --- 234,238 ---- $qu = "CREATE TABLE IF NOT EXISTS quizAttempts ( attemptID INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, ! quizid int(11) default NULL, userID int(11) default NULL, Seed int(11) default NULL, |