X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2Fdatabase%2Fdb_application-token.md;h=9899a5e8b31cad46b9b23fcef5e52a913616f370;hb=8a7d08ae2860d82fe98a26f4e86626b3c7eb4d1e;hp=af2b8d66131a536bf6cc14d67ac4ec366188ae8b;hpb=31db9dbef7f6a4f98a6c29d15493bcffb0c39929;p=friendica.git diff --git a/doc/database/db_application-token.md b/doc/database/db_application-token.md index af2b8d6613..9899a5e8b3 100644 --- a/doc/database/db_application-token.md +++ b/doc/database/db_application-token.md @@ -1,18 +1,38 @@ Table application-token =========== + OAuth user token -| Field | Description | Type | Null | Key | Default | Extra | -| ----- | ----------- | ---- | ---- | --- | ------- | ----- | -| application-id | | int unsigned | YES | PRI | NULL | | -| uid | Owner User id | mediumint unsigned | YES | PRI | NULL | | -| code | | varchar(64) | YES | | NULL | | -| access_token | | varchar(64) | YES | | NULL | | -| created_at | creation time | datetime | YES | | NULL | | -| scopes | | varchar(255) | NO | | NULL | | -| read | Read scope | boolean | NO | | NULL | | -| write | Write scope | boolean | NO | | NULL | | -| follow | Follow scope | boolean | NO | | NULL | | -| push | Push scope | boolean | NO | | NULL | | +Fields +------ + +| Field | Description | Type | Null | Key | Default | Extra | +| -------------- | ------------- | ------------------ | ---- | --- | ------- | ----- | +| application-id | | int unsigned | NO | PRI | NULL | | +| uid | Owner User id | mediumint unsigned | NO | PRI | NULL | | +| code | | varchar(64) | NO | | NULL | | +| access_token | | varchar(64) | NO | | NULL | | +| created_at | creation time | datetime | NO | | NULL | | +| scopes | | varchar(255) | YES | | NULL | | +| read | Read scope | boolean | YES | | NULL | | +| write | Write scope | boolean | YES | | NULL | | +| follow | Follow scope | boolean | YES | | NULL | | +| push | Push scope | boolean | YES | | NULL | | + +Indexes +------------ + +| Name | Fields | +| ------- | ------------------- | +| PRIMARY | application-id, uid | +| uid_id | uid, application-id | + +Foreign Keys +------------ + +| Field | Target Table | Target Field | +|-------|--------------|--------------| +| application-id | [application](help/database/db_application) | id | +| uid | [user](help/database/db_user) | uid | Return to [database documentation](help/database)