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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db_structure.xml')
-rw-r--r--[-rwxr-xr-x]db_structure.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/db_structure.xml b/db_structure.xml
index 7efb722bd72..51ab9210933 100755..100644
--- a/db_structure.xml
+++ b/db_structure.xml
@@ -8,6 +8,37 @@
<charset>latin1</charset>
<table>
+ <name>*dbprefix*privatedata</name>
+ <declaration>
+ <field>
+ <name>key</name>
+ <type>text</type>
+ <default></default>
+ <notnull>true</notnull>
+ <length>64</length>
+ </field>
+ <field>
+ <name>value</name>
+ <type>text</type>
+ <notnull>false</notnull>
+ </field>
+ <field>
+ <name>timestamp</name>
+ <type>timestamp</type>
+ <notnull>true</notnull>
+ </field>
+ <index>
+ <name>timestamp</name>
+ <unique>false</unique>
+ <field>
+ <name>timestamp</name>
+ <sorting>ascending</sorting>
+ </field>
+ </index>
+ </declaration>
+ </table>
+
+ <table>
<name>*dbprefix*groups</name>