aboutsummaryrefslogtreecommitdiffstats
path: root/database.sql
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-08-07 16:24:20 -0700
committerFriendika <info@friendika.com>2011-08-07 16:24:20 -0700
commiteea493d1f575871f89ede359a9a216ff4c39ea53 (patch)
tree6ba5a215754db62fb41cc7d0df03855419d694cc /database.sql
parent48ffa880f099b19052f18e399bf6af50780a24b0 (diff)
downloadvolse-hubzilla-eea493d1f575871f89ede359a9a216ff4c39ea53.tar.gz
volse-hubzilla-eea493d1f575871f89ede359a9a216ff4c39ea53.tar.bz2
volse-hubzilla-eea493d1f575871f89ede359a9a216ff4c39ea53.zip
upsize guid storage to allow for Diaspora future growth
Diffstat (limited to 'database.sql')
-rw-r--r--database.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/database.sql b/database.sql
index 9c43df3db..152129337 100644
--- a/database.sql
+++ b/database.sql
@@ -575,7 +575,7 @@ CREATE TABLE IF NOT EXISTS `attach` (
CREATE TABLE IF NOT EXISTS `guid` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
-`guid` CHAR( 16 ) NOT NULL ,
+`guid` CHAR( 64 ) NOT NULL ,
INDEX ( `guid` )
) ENGINE = MYISAM DEFAULT CHARSET=utf8;