From a5eb8bb206e2d687a76caabcff4704c1cc3b5073 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Sun, 26 Mar 2023 18:26:35 -0400 Subject: [PATCH] spelling: interacts Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- database.sql | 2 +- doc/database/db_diaspora-contact.md | 2 +- static/dbstructure.config.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/database.sql b/database.sql index c6761c7ef2..e1b099a20c 100644 --- a/database.sql +++ b/database.sql @@ -608,7 +608,7 @@ CREATE TABLE IF NOT EXISTS `diaspora-contact` ( `gsid` int unsigned COMMENT 'Global Server ID', `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '', `updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT '', - `interacting_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts this contact interactes with', + `interacting_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts this contact interacts with', `interacted_count` int unsigned DEFAULT 0 COMMENT 'Number of contacts that interacted with this contact', `post_count` int unsigned DEFAULT 0 COMMENT 'Number of posts and comments', PRIMARY KEY(`uri-id`), diff --git a/doc/database/db_diaspora-contact.md b/doc/database/db_diaspora-contact.md index 4beaeb019f..5bbc9ab221 100644 --- a/doc/database/db_diaspora-contact.md +++ b/doc/database/db_diaspora-contact.md @@ -27,7 +27,7 @@ Fields | gsid | Global Server ID | int unsigned | YES | | NULL | | | created | | datetime | NO | | 0001-01-01 00:00:00 | | | updated | | datetime | NO | | 0001-01-01 00:00:00 | | -| interacting_count | Number of contacts this contact interactes with | int unsigned | YES | | 0 | | +| interacting_count | Number of contacts this contact interacts with | int unsigned | YES | | 0 | | | interacted_count | Number of contacts that interacted with this contact | int unsigned | YES | | 0 | | | post_count | Number of posts and comments | int unsigned | YES | | 0 | | diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index 62ac04f1cf..2c6b448ac3 100644 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -662,7 +662,7 @@ return [ "gsid" => ["type" => "int unsigned", "foreign" => ["gserver" => "id", "on delete" => "restrict"], "comment" => "Global Server ID"], "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""], "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""], - "interacting_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of contacts this contact interactes with"], + "interacting_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of contacts this contact interacts with"], "interacted_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of contacts that interacted with this contact"], "post_count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of posts and comments"], ],