]> git.mxchange.org Git - friendica.git/blob - doc/database/db_application-token.md
Trailing whitespace removed
[friendica.git] / doc / database / db_application-token.md
1 Table application-token
2 ===========
3
4 OAuth user token
5
6 | Field          | Description   | Type               | Null | Key | Default | Extra |
7 | -------------- | ------------- | ------------------ | ---- | --- | ------- | ----- |
8 | application-id |               | int unsigned       | NO   | PRI | NULL    |       |
9 | uid            | Owner User id | mediumint unsigned | NO   | PRI | NULL    |       |
10 | code           |               | varchar(64)        | NO   |     | NULL    |       |
11 | access_token   |               | varchar(64)        | NO   |     | NULL    |       |
12 | created_at     | creation time | datetime           | NO   |     | NULL    |       |
13 | scopes         |               | varchar(255)       | YES  |     | NULL    |       |
14 | read           | Read scope    | boolean            | YES  |     | NULL    |       |
15 | write          | Write scope   | boolean            | YES  |     | NULL    |       |
16 | follow         | Follow scope  | boolean            | YES  |     | NULL    |       |
17 | push           | Push scope    | boolean            | YES  |     | NULL    |       |
18
19 Return to [database documentation](help/database)