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
Родитель e9bef493bb
Коммит e015f9d44c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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