Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'appinfo/database.xml')
-rw-r--r--appinfo/database.xml39
1 files changed, 39 insertions, 0 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml
index aa4aa6c7..369e61a3 100644
--- a/appinfo/database.xml
+++ b/appinfo/database.xml
@@ -135,4 +135,43 @@
</index>
</declaration>
</table>
+
+ <table>
+ <name>*dbprefix*richdocuments_direct</name>
+ <declaration>
+ <field>
+ <name>id</name>
+ <type>integer</type>
+ <notnull>true</notnull>
+ <autoincrement>1</autoincrement>
+ <unsigned>true</unsigned>
+ <length>4</length>
+ </field>
+ <field>
+ <name>token</name>
+ <type>text</type>
+ <length>64</length>
+ </field>
+ <field>
+ <name>uid</name>
+ <type>text</type>
+ <length>64</length>
+ </field>
+ <field>
+ <name>fileid</name>
+ <type>integer</type>
+ <notnull>true</notnull>
+ <length>4</length>
+ </field>
+
+ <index>
+ <name>rd_direct_token_idx</name>
+ <unique>true</unique>
+ <field>
+ <name>token</name>
+ <sorting>ascending</sorting>
+ </field>
+ </index>
+ </declaration>
+ </table>
</database>