]> git.mxchange.org Git - friendica.git/commitdiff
Mediumint
authorMichael <heluecht@pirati.ca>
Thu, 19 Nov 2020 23:52:07 +0000 (23:52 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 19 Nov 2020 23:52:07 +0000 (23:52 +0000)
database.sql
static/dbstructure.config.php

index 9f805c7b5bde5c081abaf3d5324fdcba72d55c59..36e43d7afafcbe4f41eba7283933be0a982a270c 100644 (file)
@@ -661,7 +661,7 @@ CREATE TABLE IF NOT EXISTS `item` (
        `author-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the author of this item',
        `causer-id` int unsigned NOT NULL DEFAULT 0 COMMENT 'Link to the contact table with uid=0 of the contact that caused the item creation',
        `icid` int unsigned COMMENT 'Id of the item-content table entry that contains the whole item content',
-       `vid` tinyint unsigned COMMENT 'Id of the verb table entry that contains the activity verbs',
+       `vid` mediumint unsigned COMMENT 'Id of the verb table entry that contains the activity verbs',
        `extid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
        `post-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Post type (personal note, bookmark, ...)',
        `global` boolean NOT NULL DEFAULT '0' COMMENT '',
@@ -1430,7 +1430,7 @@ CREATE TABLE IF NOT EXISTS `user-item` (
 -- TABLE verb
 --
 CREATE TABLE IF NOT EXISTS `verb` (
-       `id` tinyint unsigned NOT NULL auto_increment,
+       `id` mediumint unsigned NOT NULL auto_increment,
        `name` varchar(100) NOT NULL DEFAULT '' COMMENT '',
         PRIMARY KEY(`id`)
 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Activity Verbs';
index 569e2ac09bb6fdc53f056b24b6cf65eac5b151c7..5e57d250f3ea8c8827d6e9e9c216399c4338ce26 100644 (file)
@@ -726,7 +726,7 @@ return [
                        "author-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the author of this item"],
                        "causer-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the contact that caused the item creation"],
                        "icid" => ["type" => "int unsigned", "relation" => ["item-content" => "id"], "comment" => "Id of the item-content table entry that contains the whole item content"],
-                       "vid" => ["type" => "tinyint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
+                       "vid" => ["type" => "mediumint unsigned", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"],
                        "extid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
                        "post-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Post type (personal note, bookmark, ...)"],
                        "global" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
@@ -1472,7 +1472,7 @@ return [
        "verb" => [
                "comment" => "Activity Verbs",
                "fields" => [
-                       "id" => ["type" => "tinyint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
+                       "id" => ["type" => "mediumint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
                        "name" => ["type" => "varchar(100)", "not null" => "1", "default" => "", "comment" => ""]
                ],
                "indexes" => [