diff options
author | Björn Schießle <schiessle@owncloud.com> | 2016-04-25 14:56:11 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-21 11:29:41 +0100 |
commit | 40b99734d3413ecee7c7ae1d71868c801b7c4188 (patch) | |
tree | 1b3ecdacf6152c3eff99bb7b535fb25e6e040119 /db_structure.xml | |
parent | d1233b47b0d96df364a1b5c043cabedc74d5eb01 (diff) | |
download | nextcloud-server-40b99734d3413ecee7c7ae1d71868c801b7c4188.tar.gz nextcloud-server-40b99734d3413ecee7c7ae1d71868c801b7c4188.zip |
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.xml | 32 |
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> |