]> git.mxchange.org Git - friendica.git/commitdiff
Allow negative contact.contat-type
authorAlexandre Alapetite <alexandre@alapetite.fr>
Wed, 12 Apr 2017 21:09:22 +0000 (23:09 +0200)
committerAlexandre Alapetite <alexandre@alapetite.fr>
Wed, 12 Apr 2017 21:09:22 +0000 (23:09 +0200)
https://github.com/friendica/friendica/issues/3328

database.sql
include/dbstructure.php

index 7ed19f439cb3d2b9a2da54f009dabe332b2b7f37..9d56957100497f41efbf465dc7db10cac4e55bf2 100644 (file)
@@ -159,7 +159,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
        `writable` tinyint(1) NOT NULL DEFAULT 0,
        `forum` tinyint(1) NOT NULL DEFAULT 0,
        `prv` tinyint(1) NOT NULL DEFAULT 0,
-       `contact-type` int(11) unsigned NOT NULL DEFAULT 0,
+       `contact-type` int(11) NOT NULL DEFAULT 0,
        `hidden` tinyint(1) NOT NULL DEFAULT 0,
        `archive` tinyint(1) NOT NULL DEFAULT 0,
        `pending` tinyint(1) NOT NULL DEFAULT 1,
index 48cc02d2d1dda64fd72bd5e51bd36db06c2719f0..9828230a126e6618ff09cafa951b18dc13aa993c 100644 (file)
@@ -5,7 +5,7 @@ use \Friendica\Core\Config;
 require_once("boot.php");
 require_once("include/text.php");
 
-define('NEW_UPDATE_ROUTINE_VERSION', 1170);
+define('NEW_UPDATE_ROUTINE_VERSION', 1171);
 
 /*
  * send the email and do what is needed to do on update fails
@@ -671,7 +671,7 @@ function db_definition($charset) {
                                        "writable" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
                                        "forum" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
                                        "prv" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
-                                       "contact-type" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
+                                       "contact-type" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
                                        "hidden" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
                                        "archive" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
                                        "pending" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),