Updates database structure documentation
This commit is contained in:
parent
cd8ce7eada
commit
84ab5d6159
83 changed files with 1289 additions and 796 deletions
18
doc/database/db_application-token.md
Normal file
18
doc/database/db_application-token.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
Table application-token
|
||||
===========
|
||||
OAuth user token
|
||||
|
||||
| Field | Description | Type | Null | Key | Default | Extra |
|
||||
| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
|
||||
| application-id | | int unsigned | YES | PRI | | |
|
||||
| uid | Owner User id | mediumint unsigned | YES | PRI | | |
|
||||
| code | | varchar(64) | YES | | | |
|
||||
| access_token | | varchar(64) | YES | | | |
|
||||
| created_at | creation time | datetime | YES | | | |
|
||||
| scopes | | varchar(255) | NO | | | |
|
||||
| read | Read scope | boolean | NO | | | |
|
||||
| write | Write scope | boolean | NO | | | |
|
||||
| follow | Follow scope | boolean | NO | | | |
|
||||
| push | Push scope | boolean | NO | | | |
|
||||
|
||||
Return to [database documentation](help/database)
|
Loading…
Add table
Add a link
Reference in a new issue