Finish issue #276.

* bin/make-database
  Up the length of the people table's 'who' column to 128 characters.
  Suggested by: Ted Mielczarek <luserspaz@tigris.org>

git-svn-id: http://viewvc.tigris.org/svn/viewvc/trunk@1492 8cb11bc2-c004-0410-86c3-e597b4017df7
remotes/options-overhaul
cmpilato 2006-12-21 16:54:41 +00:00
parent 1d2b2d9c35
commit c6db566501
1 changed files with 1 additions and 1 deletions

View File

@ -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)
);