From c6db5665010d389afad4b777f72d0350f6a5262d Mon Sep 17 00:00:00 2001 From: cmpilato Date: Thu, 21 Dec 2006 16:54:41 +0000 Subject: [PATCH] Finish issue #276. * bin/make-database Up the length of the people table's 'who' column to 128 characters. Suggested by: Ted Mielczarek git-svn-id: http://viewvc.tigris.org/svn/viewvc/trunk@1492 8cb11bc2-c004-0410-86c3-e597b4017df7 --- bin/make-database | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/make-database b/bin/make-database index 1764c312..1122c34c 100755 --- a/bin/make-database +++ b/bin/make-database @@ -92,7 +92,7 @@ CREATE TABLE files ( DROP TABLE IF EXISTS people; CREATE TABLE people ( id mediumint(9) NOT NULL auto_increment, - who varchar(32) binary DEFAULT '' NOT NULL, + who varchar(128) binary DEFAULT '' NOT NULL, PRIMARY KEY (id), UNIQUE who (who) );