]> git.mxchange.org Git - friendica.git/commitdiff
Allow anonymous reports
authorMichael <heluecht@pirati.ca>
Mon, 14 Nov 2022 23:27:46 +0000 (23:27 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 14 Nov 2022 23:27:46 +0000 (23:27 +0000)
database.sql
doc/database/db_report.md
static/dbstructure.config.php

index f471aec907a4d04136bc46dfbd8a8259f23a0c8e..1a7c0f3731acaa6c89e5493025246c5483204b7d 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
 -- Friendica 2022.12-dev (Giant Rhubarb)
--- DB_UPDATE_VERSION 1489
+-- DB_UPDATE_VERSION 1490
 -- ------------------------------------------
 
 
@@ -1651,7 +1651,7 @@ CREATE TABLE IF NOT EXISTS `register` (
 --
 CREATE TABLE IF NOT EXISTS `report` (
        `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
-       `uid` mediumint unsigned NOT NULL COMMENT 'Reporting user',
+       `uid` mediumint unsigned COMMENT 'Reporting user',
        `cid` int unsigned NOT NULL COMMENT 'Reported contact',
        `comment` text COMMENT 'Report',
        `forward` boolean COMMENT 'Forward the report to the remote server',
index 6e52636eb3fa6b4a388e52c39ab2c2f8282ab1d6..ababf6472f3602fdc2a52c6115fdeae3282f5cfb 100644 (file)
@@ -9,7 +9,7 @@ Fields
 | Field   | Description                             | Type               | Null | Key | Default             | Extra          |
 | ------- | --------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
 | id      | sequential ID                           | int unsigned       | NO   | PRI | NULL                | auto_increment |
-| uid     | Reporting user                          | mediumint unsigned | NO   |     | NULL                |                |
+| uid     | Reporting user                          | mediumint unsigned | YES  |     | NULL                |                |
 | cid     | Reported contact                        | int unsigned       | NO   |     | NULL                |                |
 | comment | Report                                  | text               | YES  |     | NULL                |                |
 | forward | Forward the report to the remote server | boolean            | YES  |     | NULL                |                |
index f957596b6424571e12d6e4bbd838b1833c73885b..53289addfb81764b1424f49966b24d17c7f60d55 100644 (file)
@@ -55,7 +55,7 @@
 use Friendica\Database\DBA;
 
 if (!defined('DB_UPDATE_VERSION')) {
-       define('DB_UPDATE_VERSION', 1489);
+       define('DB_UPDATE_VERSION', 1490);
 }
 
 return [
@@ -1653,7 +1653,7 @@ return [
                "comment" => "",
                "fields" => [
                        "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
-                       "uid" => ["type" => "mediumint unsigned", "not null" => "1", "foreign" => ["user" => "uid"], "comment" => "Reporting user"],
+                       "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Reporting user"],
                        "cid" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["contact" => "id"], "comment" => "Reported contact"],
                        "comment" => ["type" => "text", "comment" => "Report"],
                        "forward" => ["type" => "boolean", "comment" => "Forward the report to the remote server"],