]> git.mxchange.org Git - friendica.git/commitdiff
so this is why my db updates were reverted ;-)
authorfriendica <info@friendica.com>
Tue, 2 Sep 2014 08:08:50 +0000 (01:08 -0700)
committerfriendica <info@friendica.com>
Tue, 2 Sep 2014 08:08:50 +0000 (01:08 -0700)
include/dbstructure.php

index 45ba9b200d651b8a9852d0630207555f45687815..bdf6b8924692380879eca9e17b5abe66eefc4f26 100644 (file)
@@ -621,7 +621,7 @@ function db_definition() {
        $database["guid"] = array(
                        "fields" => array(
                                        "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
-                                       "guid" => array("type" => "varchar(64)", "not null" => "1"),
+                                       "guid" => array("type" => "varchar(255)", "not null" => "1"),
                                        ),
                        "indexes" => array(
                                        "PRIMARY" => array("id"),
@@ -662,7 +662,7 @@ function db_definition() {
        $database["item"] = array(
                        "fields" => array(
                                        "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"),
-                                       "guid" => array("type" => "varchar(64)", "not null" => "1"),
+                                       "guid" => array("type" => "varchar(255)", "not null" => "1"),
                                        "uri" => array("type" => "varchar(255)", "not null" => "1"),
                                        "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0"),
                                        "contact-id" => array("type" => "int(11)", "not null" => "1"),