From e54bab738bdfd9e7ae111118ac91d6ddf9aff706 Mon Sep 17 00:00:00 2001 From: "tara%tequilarista.org" Date: Thu, 7 Nov 2002 21:39:57 +0000 Subject: [PATCH] Fix for bug 44644 git-svn-id: svn://10.0.0.236/trunk@133323 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bonsai/maketables.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) );