Allow usernames up to 128 chars.

Bug #188274 r=timeless
This commit is contained in:
cls%seawood.org 2004-12-01 08:52:17 +00:00
parent 00f5546dc0
commit 2a262ddd94

View File

@ -68,7 +68,7 @@ show index from descs;
create table people (
id mediumint not null auto_increment primary key,
who varchar(32) binary not null,
who varchar(128) binary not null,
unique(who)
);