]> git.mxchange.org Git - friendica.git/commitdiff
Fix table structure definition
authorMichael <heluecht@pirati.ca>
Wed, 21 Aug 2019 06:18:32 +0000 (06:18 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 21 Aug 2019 06:18:32 +0000 (06:18 +0000)
static/dbstructure.config.php

index a00d957273c88e7bdfc8d88076c0b5142b2ca053..7a33a22b53685cde2980e69b11e74cf9c6c59322 100755 (executable)
@@ -44,13 +44,13 @@ return [
                        "id" => ["type" => "mediumint unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Password ID for revocation"],
                        "uid" => ["type" => "mediumint unsigned", "not null" => "1", "relation" => ["user" => "uid"], "comment" => "User ID"],
                        "description" => ["type" => "varchar(255)", "comment" => "Description of the usage of the password"],
-                       "hashed_password" => ["type" => "varchar(255)", "not null" => "1", "primary" => "1", "comment" => "Hashed password"],
+                       "hashed_password" => ["type" => "varchar(255)", "not null" => "1", "comment" => "Hashed password"],
                        "generated" => ["type" => "datetime", "not null" => "1", "comment" => "Datetime the password was generated"],
                        "last_used" => ["type" => "datetime", "comment" => "Datetime the password was last used"],
                ],
                "indexes" => [
                        "PRIMARY" => ["id"],
-                       "uid_description" => ["uid", "description"],
+                       "uid_description" => ["uid", "description(190)"],
                ]
        ],
        "2fa_recovery_codes" => [