docu - add schema of each db table

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

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

@ -0,0 +1,13 @@
Table spam
==========
| Field | Description | Type | Null | Key | Default | Extra |
| ----- | ----------- | ------------ | ---- | --- | ------------------- | --------------- |
| id | | int(11) | NO | PRI | NULL | auto_increment |
| uid | | int(11) | NO | MUL | 0 | |
| spam | | int(11) | NO | MUL | 0 | |
| ham | | int(11) | NO | MUL | 0 | |
| term | | varchar(255) | NO | MUL | | |
| date | | datetime | NO | | 0000-00-00 00:00:00 | |
Return to [database documentation](help/database)