Updates database structure documentation

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

View file

@ -1,18 +1,19 @@
Table intro
===========
| Field | Description | Type | Null | Key | Default | Extra |
|------------|------------------|------------------|------|-----|---------------------|----------------|
| id | sequential ID | int(10) unsigned | NO | PRI | NULL | auto_increment |
| uid | | int(10) unsigned | NO | | 0 | |
| fid | | int(11) | NO | | 0 | |
| contact-id | | int(11) | NO | | 0 | |
| knowyou | | tinyint(1) | NO | | 0 | |
| duplex | | tinyint(1) | NO | | 0 | |
| note | | text | NO | | NULL | |
| hash | | varchar(255) | NO | | | |
| datetime | | datetime | NO | | 0001-01-01 00:00:00 | |
| blocked | | tinyint(1) | NO | | 1 | |
| ignore | | tinyint(1) | NO | | 0 | |
| Field | Description | Type | Null | Key | Default | Extra |
| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
| id | sequential ID | int unsigned | YES | PRI | | auto_increment |
| uid | User id | mediumint unsigned | YES | | 0 | |
| fid | | int unsigned | NO | | | |
| contact-id | | int unsigned | YES | | 0 | |
| knowyou | | boolean | YES | | 0 | |
| duplex | | boolean | YES | | 0 | |
| note | | text | NO | | | |
| hash | | varchar(255) | YES | | | |
| datetime | | datetime | YES | | 0001-01-01 00:00:00 | |
| blocked | | boolean | YES | | 1 | |
| ignore | | boolean | YES | | 0 | |
Return to [database documentation](help/database)