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:
authorBjörn Schießle <schiessle@owncloud.com>2016-04-25 15:56:11 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2016-11-21 13:29:41 +0300
commit40b99734d3413ecee7c7ae1d71868c801b7c4188 (patch)
tree1b3ecdacf6152c3eff99bb7b535fb25e6e040119 /db_structure.xml
parentd1233b47b0d96df364a1b5c043cabedc74d5eb01 (diff)
introduce accounts table and keep it up-to-date with the data added to the personal settings
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'db_structure.xml')
-rw-r--r--db_structure.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/db_structure.xml b/db_structure.xml
index c7e1e072a8e..545628a9233 100644
--- a/db_structure.xml
+++ b/db_structure.xml
@@ -2113,4 +2113,36 @@
</declaration>
</table>
+ <table>
+
+ <name>*dbprefix*accounts</name>
+
+ <declaration>
+ <field>
+ <name>uid</name>
+ <type>text</type>
+ <default></default>
+ <notnull>true</notnull>
+ <length>64</length>
+ </field>
+ <field>
+ <name>data</name>
+ <type>clob</type>
+ <default></default>
+ <notnull>true</notnull>
+ </field>
+
+ <index>
+ <name>uid_index</name>
+ <primary>true</primary>
+ <unique>true</unique>
+ <field>
+ <name>uid</name>
+ <sorting>ascending</sorting>
+ </field>
+ </index>
+
+ </declaration>
+ </table>
+
</database>