summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2018-11-23 19:41:46 -0100
committerJulius Härtl <jus@bitgrid.net>2018-11-27 10:24:49 +0100
commit9aacccf719d1d115be48299d04f7cb72a68f1c87 (patch)
tree5fcc0cd4e1e6e1978d20eb0dc405894fdf04cfb0 /appinfo
parent0944d07da67725984051885870284e7832a09184 (diff)
Document, Image and Caching
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/database.xml67
1 files changed, 67 insertions, 0 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml
index d942c063..58e8360e 100644
--- a/appinfo/database.xml
+++ b/appinfo/database.xml
@@ -374,5 +374,72 @@
</declaration>
</table>
+ <table>
+ <name>*dbprefix*social_cache_documents</name>
+ <declaration>
+
+ <field>
+ <name>id</name>
+ <type>string</type>
+ <length>127</length>
+ <notnull>true</notnull>
+ <primary>true</primary>
+ </field>
+
+ <field>
+ <name>type</name>
+ <type>text</type>
+ <length>31</length>
+ <notnull>true</notnull>
+ </field>
+
+ <field>
+ <name>media_type</name>
+ <type>text</type>
+ <length>63</length>
+ <notnull>true</notnull>
+ </field>
+
+ <field>
+ <name>mime_type</name>
+ <type>text</type>
+ <length>63</length>
+ <notnull>true</notnull>
+ </field>
+
+ <field>
+ <name>url</name>
+ <type>text</type>
+ <length>127</length>
+ <notnull>true</notnull>
+ </field>
+
+ <field>
+ <name>local_copy</name>
+ <type>text</type>
+ <length>127</length>
+ <notnull>true</notnull>
+ </field>
+
+ <field>
+ <name>creation</name>
+ <type>timestamp</type>
+ </field>
+
+ <field>
+ <name>caching</name>
+ <type>timestamp</type>
+ </field>
+
+ <index>
+ <name>unique_url</name>
+ <unique>true</unique>
+ <field>
+ <name>url</name>
+ </field>
+ </index>
+ </declaration>
+ </table>
+
</database>