1
1
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,11 +1,12 @@
Table oembed
============
===========
cache for OEmbed queries
| Field | Description | Type | Null | Key | Default | Extra |
| ------------ | ---------------------------------- | ------------ | ---- | --- | ------------------- | ----- |
| url | page url | varchar(255) | NO | PRI | NULL | |
| maxwidth | Maximum width passed to Oembed | int(11) | NO | PRI | 0 | |
| content | OEmbed data of the page | text | NO | | NULL | |
| created | datetime of creation | datetime | NO | MUL | 0001-01-01 00:00:00 | |
| Field | Description | Type | Null | Key | Default | Extra |
| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
| url | page url | varbinary(255) | YES | PRI | | |
| maxwidth | Maximum width passed to Oembed | mediumint unsigned | YES | PRI | | |
| content | OEmbed data of the page | mediumtext | NO | | | |
| created | datetime of creation | datetime | YES | | 0001-01-01 00:00:00 | |
Return to [database documentation](help/database)