]> git.mxchange.org Git - friendica.git/commitdiff
spelling: link
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Sun, 26 Mar 2023 22:29:58 +0000 (18:29 -0400)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Mon, 27 Mar 2023 00:04:07 +0000 (20:04 -0400)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
database.sql
doc/database/db_mail.md
static/dbstructure.config.php

index e1b099a20ce6148291cfb6bab1d5c7fe2f1a6d44..eefd38984082dc6ce76a745c899f05869c645a21 100644 (file)
@@ -880,7 +880,7 @@ CREATE TABLE IF NOT EXISTS `mail` (
        `guid` varbinary(255) NOT NULL DEFAULT '' COMMENT 'A unique identifier for this private message',
        `from-name` varchar(255) NOT NULL DEFAULT '' COMMENT 'name of the sender',
        `from-photo` varbinary(383) NOT NULL DEFAULT '' COMMENT 'contact photo link of the sender',
-       `from-url` varbinary(383) NOT NULL DEFAULT '' COMMENT 'profile linke of the sender',
+       `from-url` varbinary(383) NOT NULL DEFAULT '' COMMENT 'profile link of the sender',
        `contact-id` varbinary(255) COMMENT 'contact.id',
        `author-id` int unsigned COMMENT 'Link to the contact table with uid=0 of the author of the mail',
        `convid` int unsigned COMMENT 'conv.id',
index 2b588b4d74c1e3172ea87e2c390cca2d99d6411b..834b556f6fa2e81b173a84a9fd152d0d0f3cbd83 100644 (file)
@@ -13,7 +13,7 @@ Fields
 | guid          | A unique identifier for this private message                   | varbinary(255)     | NO   |     |                     |                |
 | from-name     | name of the sender                                             | varchar(255)       | NO   |     |                     |                |
 | from-photo    | contact photo link of the sender                               | varbinary(383)     | NO   |     |                     |                |
-| from-url      | profile linke of the sender                                    | varbinary(383)     | NO   |     |                     |                |
+| from-url      | profile link of the sender                                     | varbinary(383)     | NO   |     |                     |                |
 | contact-id    | contact.id                                                     | varbinary(255)     | YES  |     | NULL                |                |
 | author-id     | Link to the contact table with uid=0 of the author of the mail | int unsigned       | YES  |     | NULL                |                |
 | convid        | conv.id                                                        | int unsigned       | YES  |     | NULL                |                |
index 2c6b448ac35f2d968f08b499e6977569983643f0..9acfbfcf98952d4c48da30646b6dd0fd72293722 100644 (file)
@@ -926,7 +926,7 @@ return [
                        "guid" => ["type" => "varbinary(255)", "not null" => "1", "default" => "", "comment" => "A unique identifier for this private message"],
                        "from-name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "name of the sender"],
                        "from-photo" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "contact photo link of the sender"],
-                       "from-url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "profile linke of the sender"],
+                       "from-url" => ["type" => "varbinary(383)", "not null" => "1", "default" => "", "comment" => "profile link of the sender"],
                        "contact-id" => ["type" => "varbinary(255)", "relation" => ["contact" => "id"], "comment" => "contact.id"],
                        "author-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Link to the contact table with uid=0 of the author of the mail"],
                        "convid" => ["type" => "int unsigned", "relation" => ["conv" => "id"], "comment" => "conv.id"],