From 90349d14e1e76e6a60506789299cd309602934f3 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 2 Dec 2020 14:55:57 +0000 Subject: [PATCH] Chaning wording --- database.sql | 4 ++-- static/dbstructure.config.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/database.sql b/database.sql index e5e1ca239..b04b088d8 100644 --- a/database.sql +++ b/database.sql @@ -466,13 +466,13 @@ CREATE TABLE IF NOT EXISTS `conversation` ( -- CREATE TABLE IF NOT EXISTS `delayed-post` ( `id` int unsigned NOT NULL auto_increment, - `uri` varchar(255) COMMENT 'URI of the post that will be posted later', + `uri` varchar(255) COMMENT 'URI of the post that will be distributed later', `uid` mediumint unsigned COMMENT 'Owner User id', `delayed` datetime COMMENT 'delay time', PRIMARY KEY(`id`), UNIQUE INDEX `uid_uri` (`uid`,`uri`(190)), FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE -) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Posts that are about to be posted at a later time'; +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Posts that are about to be distributed at a later time'; -- -- TABLE diaspora-interaction diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index 106ae4e3f..bc07c6724 100644 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -528,10 +528,10 @@ return [ ] ], "delayed-post" => [ - "comment" => "Posts that are about to be posted at a later time", + "comment" => "Posts that are about to be distributed at a later time", "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 posted later"], + "uri" => ["type" => "varchar(255)", "comment" => "URI of the post that will be distributed later"], "uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Owner User id"], "delayed" => ["type" => "datetime", "comment" => "delay time"], ],