1
0
Fork 0

Updates database structure documentation

This commit is contained in:
Michael 2021-06-13 20:33:50 +00:00
commit 84ab5d6159
83 changed files with 1289 additions and 796 deletions

View file

@ -1,13 +1,14 @@
Table clients
=============
===========
OAuth usage
| Field | Description | Type | Null | Key | Default | Extra |
| ------------- | ----------- | ------------ | ---- | --- | ------- | ----- |
| client_id | | varchar(20) | NO | PRI | NULL | |
| pw | | varchar(20) | NO | | | |
| redirect_uri | | varchar(200) | NO | | | |
| name | | text | YES | | NULL | |
| icon | | text | YES | | NULL | |
| uid | | int(11) | NO | | 0 | |
| Field | Description | Type | Null | Key | Default | Extra |
| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
| client_id | | varchar(20) | YES | PRI | | |
| pw | | varchar(20) | YES | | | |
| redirect_uri | | varchar(200) | YES | | | |
| name | | text | NO | | | |
| icon | | text | NO | | | |
| uid | User id | mediumint unsigned | YES | | 0 | |
Return to [database documentation](help/database)