]> git.mxchange.org Git - friendica.git/blob - doc/database/db_oembed.md
Merge remote-tracking branch 'upstream/develop' into api-edit
[friendica.git] / doc / database / db_oembed.md
1 Table oembed
2 ===========
3
4 cache for OEmbed queries
5
6 Fields
7 ------
8
9 | Field    | Description                    | Type               | Null | Key | Default             | Extra |
10 | -------- | ------------------------------ | ------------------ | ---- | --- | ------------------- | ----- |
11 | url      | page url                       | varbinary(383)     | NO   | PRI | NULL                |       |
12 | maxwidth | Maximum width passed to Oembed | mediumint unsigned | NO   | PRI | NULL                |       |
13 | content  | OEmbed data of the page        | mediumtext         | YES  |     | NULL                |       |
14 | created  | datetime of creation           | datetime           | NO   |     | 0001-01-01 00:00:00 |       |
15
16 Indexes
17 ------------
18
19 | Name    | Fields        |
20 | ------- | ------------- |
21 | PRIMARY | url, maxwidth |
22 | created | created       |
23
24
25 Return to [database documentation](help/database)