]> git.mxchange.org Git - friendica.git/blobdiff - static/dbstructure.config.php
OAuth connections now have to be ackknowledged
[friendica.git] / static / dbstructure.config.php
index 052f73b9cf94e38d5d50026947f6dc4a771a3c33..41515681e4a17a9050d624f13001a885f18e82a7 100644 (file)
@@ -55,7 +55,7 @@
 use Friendica\Database\DBA;
 
 if (!defined('DB_UPDATE_VERSION')) {
-       define('DB_UPDATE_VERSION', 1415);
+       define('DB_UPDATE_VERSION', 1416);
 }
 
 return [
@@ -442,6 +442,20 @@ return [
                        "client_id" => ["UNIQUE", "client_id"]
                ]
        ],
+       "application-token" => [
+               "comment" => "OAuth user token",
+               "fields" => [
+                       "application-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["application" => "id"], "comment" => ""],
+                       "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
+                       "code" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
+                       "access_token" => ["type" => "varchar(64)", "not null" => "1", "comment" => ""],
+                       "created_at" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "creation time"],
+               ],
+               "indexes" => [
+                       "PRIMARY" => ["application-id", "uid"],
+                       "uid_id" => ["uid", "application-id"],
+               ]
+       ],
        "attach" => [
                "comment" => "file attachments",
                "fields" => [