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_sign.md Normal file
View file

@ -0,0 +1,13 @@
Table sign
==========
| Field | Description | Type | Null | Key | Default | Extra |
| ------------ | ------------- | ---------------- | ---- | --- | ------- | --------------- |
| id | sequential ID | int(10) unsigned | NO | PRI | NULL | auto_increment |
| iid | item.id | int(10) unsigned | NO | MUL | 0 | |
| retract_iid | | int(10) unsigned | NO | MUL | 0 | |
| signed_text | | mediumtext | NO | | NULL | |
| signature | | text | NO | | NULL | |
| signer | | varchar(255) | NO | | | |
Return to [database documentation](help/database)