diff --git a/setup.php b/setup.php index 4df213f..27916d1 100644 --- a/setup.php +++ b/setup.php @@ -22,6 +22,7 @@ # # Contributor(s): # Daniel Triendl +# balu # # Alternatively, the contents of this file may be used under the terms of # either the GNU General Public License Version 2 or later (the "GPL"), or @@ -346,7 +347,7 @@ if ( $action == "step2" ) { $create_statement = " create table wbo ( username varchar(100), id varchar(65), collection varchar(100), parentid varchar(65), predecessorid int, modified real, sortindex int, payload text, payload_size int, ttl int, primary key (username,collection,id))"; - $create_statement2 = " create table users ( username varchar(255), md5 varchar(64), primary key (username)) "; + $create_statement2 = " create table users ( username varchar(255), md5 varchar(124), primary key (username)) "; $index1 = 'create index parentindex on wbo (username, parentid)'; $index2 = 'create index predecessorindex on wbo (username, predecessorid)'; $index3 = 'create index modifiedindex on wbo (username, collection, modified)';