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,12 +1,13 @@
Table hook
==========
===========
addon hook registry
| Field | Description | Type | Null | Key | Default | Extra |
| -------- | ---------------------------------------------------------------------------------------------------------- | ---------------- | ---- | --- | ------- | --------------- |
| id | sequential ID | int(11) | NO | PRI | NULL | auto_increment |
| hook | name of hook | varchar(255) | NO | MUL | | |
| file | relative filename of hook handler | varchar(255) | NO | | | |
| function | function name of hook handler | varchar(255) | NO | | | |
| priority | not yet implemented - can be used to sort conflicts in hook handling by calling handlers in priority order | int(11) unsigned | NO | | 0 | |
| Field | Description | Type | Null | Key | Default | Extra |
| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
| id | sequential ID | int unsigned | YES | PRI | | auto_increment |
| hook | name of hook | varbinary(100) | YES | | | |
| file | relative filename of hook handler | varbinary(200) | YES | | | |
| function | function name of hook handler | varbinary(200) | YES | | | |
| priority | not yet implemented - can be used to sort conflicts in hook handling by calling handlers in priority order | smallint unsigned | YES | | 0 | |
Return to [database documentation](help/database)