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:
authorMartin T. H. Sandsmark <sandsmark@samfundet.no>2010-07-16 13:36:03 +0400
committerMartin T. H. Sandsmark <sandsmark@samfundet.no>2010-07-16 13:36:03 +0400
commit64d4d57615f1002d3993cc319959c2b97e4f6775 (patch)
tree4de6a82e28b45852ad260378ec8a8f3bbb0f0133 /db_structure.xml
parentfa9deac833bf82d031b4a62fc2f298da4bbff6cb (diff)
fix permissions, start to implement private data api
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>