From e671d1493382f2807d8d34087faf2c6592b5052b Mon Sep 17 00:00:00 2001 From: "robert%accettura.com" Date: Tue, 21 Mar 2006 21:04:42 +0000 Subject: [PATCH] Password should be 41 chars for mySQL 4.1+ compatibility, and AUTO_INCREMENT should be = 1. git-svn-id: svn://10.0.0.236/trunk@192727 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/tools/reporter/sql/schema.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/tools/reporter/sql/schema.sql b/mozilla/tools/reporter/sql/schema.sql index 817b163ebb9..ef4f76c58fd 100644 --- a/mozilla/tools/reporter/sql/schema.sql +++ b/mozilla/tools/reporter/sql/schema.sql @@ -30,7 +30,7 @@ CREATE TABLE "product" ( PRIMARY KEY ("product_id"), KEY "product_family" ("product_family"), KEY "product_value" ("product_value") -) AUTO_INCREMENT=3 ; +) AUTO_INCREMENT=1 ; -- -------------------------------------------------------- @@ -96,7 +96,7 @@ CREATE TABLE "sysid" ( CREATE TABLE "user" ( "user_id" int(11) NOT NULL auto_increment, "user_username" varchar(50) collate utf8_unicode_ci NOT NULL default '', - "user_password" varchar(16) collate utf8_unicode_ci NOT NULL default '', + "user_password" varchar(41) collate utf8_unicode_ci NOT NULL default '', "user_realname" varchar(40) collate utf8_unicode_ci NOT NULL default '', "user_email" varchar(255) collate utf8_unicode_ci NOT NULL default '', "user_added_by" tinytext collate utf8_unicode_ci NOT NULL, @@ -106,4 +106,4 @@ CREATE TABLE "user" ( "user_status" int(11) NOT NULL default '0', PRIMARY KEY ("user_id"), KEY "user_username" ("user_username") -) AUTO_INCREMENT=2 ; +) AUTO_INCREMENT=1 ;