]> git.mxchange.org Git - friendica.git/blobdiff - doc/database/db_oembed.md
Merge remote-tracking branch 'upstream/develop' into api-edit
[friendica.git] / doc / database / db_oembed.md
index 3a264d7da07a9d5271d64f1818a8a813f7d6687c..bdcbbcc2bfc53ab406fd56e8025a80ca350d4504 100644 (file)
@@ -1,12 +1,25 @@
 Table oembed
 ===========
+
 cache for OEmbed queries
 
-| Field | Description | Type | Null | Key | Default | Extra |
-| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
-| url      | page url                       | varbinary(255)     | NO  | PRI | NULL                |  |    
-| maxwidth | Maximum width passed to Oembed | mediumint unsigned | NO  | PRI | NULL                |  |    
-| content  | OEmbed data of the page        | mediumtext         | YES |     | NULL                |  |    
-| created  | datetime of creation           | datetime           | NO  |     | 0001-01-01 00:00:00 |  |    
+Fields
+------
+
+| Field    | Description                    | Type               | Null | Key | Default             | Extra |
+| -------- | ------------------------------ | ------------------ | ---- | --- | ------------------- | ----- |
+| url      | page url                       | varbinary(383)     | NO   | PRI | NULL                |       |
+| maxwidth | Maximum width passed to Oembed | mediumint unsigned | NO   | PRI | NULL                |       |
+| content  | OEmbed data of the page        | mediumtext         | YES  |     | NULL                |       |
+| created  | datetime of creation           | datetime           | NO   |     | 0001-01-01 00:00:00 |       |
+
+Indexes
+------------
+
+| Name    | Fields        |
+| ------- | ------------- |
+| PRIMARY | url, maxwidth |
+| created | created       |
+
 
 Return to [database documentation](help/database)