]> git.mxchange.org Git - friendica.git/blobdiff - static/dbstructure.config.php
Merge pull request #10589 from annando/pleroma
[friendica.git] / static / dbstructure.config.php
index 0376315e3f8ad8221fcdf5f32bae22d8e165b6f0..d1cc42033a0cc7a12ba5d4e4cec3a23893b9c1ad 100644 (file)
@@ -585,12 +585,9 @@ return [
                "fields" => [
                        "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"],
                        "uri" => ["type" => "varchar(255)", "comment" => "URI of the post that will be distributed later"],
-                       "title" => ["type" => "varchar(255)", "comment" => "post title"],
-                       "body" => ["type" => "mediumtext", "comment" => "post body content"],
-                       "private" => ["type" => "tinyint unsigned", "comment" => "0=public, 1=private, 2=unlisted"],
-                       "wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"],
                        "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
                        "delayed" => ["type" => "datetime", "comment" => "delay time"],
+                       "wid" => ["type" => "int unsigned", "foreign" => ["workerqueue" => "id"], "comment" => "Workerqueue id"],
                ],
                "indexes" => [
                        "PRIMARY" => ["id"],