1
0
Fork 0

docu - add schema of each db table

This commit is contained in:
rabuzarus 2015-12-28 02:50:25 +01:00
commit 12f8b0630d
56 changed files with 1011 additions and 5 deletions

13
doc/database/db_tokens.md Normal file
View file

@ -0,0 +1,13 @@
Table tokens
============
| Field | Description | Type | Null | Key | Default | Extra |
| ---------- | ----------- | ------------ | ---- | --- | ------- | ----- |
| id | | varchar(40) | NO | PRI | NULL | |
| secret | | text | NO | | NULL | |
| client_id | | varchar(20) | NO | | | |
| expires | | int(11) | NO | | 0 | |
| scope | | varchar(200) | NO | | | |
| uid | | int(11) | NO | | 0 | |
Return to [database documentation](help/database)