mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-07 15:54:26 +02:00
Updates database structure documentation
This commit is contained in:
parent
cd8ce7eada
commit
84ab5d6159
83 changed files with 1289 additions and 796 deletions
19
doc/database/db_application.md
Normal file
19
doc/database/db_application.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
Table application
|
||||
===========
|
||||
OAuth application
|
||||
|
||||
| Field | Description | Type | Null | Key | Default | Extra |
|
||||
| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
|
||||
| id | generated index | int unsigned | YES | PRI | | auto_increment |
|
||||
| client_id | | varchar(64) | YES | | | |
|
||||
| client_secret | | varchar(64) | YES | | | |
|
||||
| name | | varchar(255) | YES | | | |
|
||||
| redirect_uri | | varchar(255) | YES | | | |
|
||||
| website | | varchar(255) | NO | | | |
|
||||
| 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