]> git.mxchange.org Git - friendica.git/blob - doc/database/db_oembed.md
3edee64c688ea4fdf7a8c8d23d7ac83c7c103bef
[friendica.git] / doc / database / db_oembed.md
1 Table oembed
2 ===========
3
4 cache for OEmbed queries
5
6 | Field    | Description                    | Type               | Null | Key | Default             | Extra |
7 | -------- | ------------------------------ | ------------------ | ---- | --- | ------------------- | ----- |
8 | url      | page url                       | varbinary(255)     | NO   | PRI | NULL                |       |
9 | maxwidth | Maximum width passed to Oembed | mediumint unsigned | NO   | PRI | NULL                |       |
10 | content  | OEmbed data of the page        | mediumtext         | YES  |     | NULL                |       |
11 | created  | datetime of creation           | datetime           | NO   |     | 0001-01-01 00:00:00 |       |
12
13 Return to [database documentation](help/database)