aboutsummaryrefslogtreecommitdiffstats
path: root/update.php
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 /update.php
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 'update.php')
-rw-r--r--update.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/update.php b/update.php
index 0fafd11e3..3c76a6bb4 100644
--- a/update.php
+++ b/update.php
@@ -632,10 +632,14 @@ function update_1076() {
}
// There was a typo in 1076 so we'll try again in 1077 to make sure
+// We'll also make it big enough to allow for future growth, I seriously
+// doubt Diaspora will be able to leave guids at 16 bytes,
+// and we can also use the same structure for our own larger guids
function update_1077() {
q("CREATE TABLE IF NOT EXISTS `guid` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`guid` CHAR( 16 ) NOT NULL , INDEX ( `guid` ) ) ENGINE = MYISAM ");
+ q("ALTER TABLE `guid` CHANGE `guid` `guid` CHAR( 64 ) NOT NULL");
}