diff --git a/mozilla/webtools/bonsai/maketables.sh b/mozilla/webtools/bonsai/maketables.sh index 2e9c1de0ee4..b1174ee0c50 100755 --- a/mozilla/webtools/bonsai/maketables.sh +++ b/mozilla/webtools/bonsai/maketables.sh @@ -91,7 +91,7 @@ show index from repositories; create table dirs ( id mediumint not null auto_increment primary key, - dir varchar(128) binary not null, + dir varchar(255) binary not null, unique(dir) ); @@ -102,7 +102,7 @@ show index from dirs; create table files ( id mediumint not null auto_increment primary key, - file varchar(128) binary not null, + file varchar(255) binary not null, unique(file) );