diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-07-20 22:50:50 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-07-21 08:51:14 +0200 |
commit | 7753b93aa6f6a7815bed8b649212037f681b5560 (patch) | |
tree | 245eaa430ed8291f8cbd9707a38edfa563129fea /db_structure.xml | |
parent | c0e9b374f16b139dc298c8c953f36b519b80793e (diff) | |
download | nextcloud-server-7753b93aa6f6a7815bed8b649212037f681b5560.tar.gz nextcloud-server-7753b93aa6f6a7815bed8b649212037f681b5560.zip |
PrivateData to app
* PrivateData is an app now: https://github.com/nextcloud/privatedata
* No need to load the OCS routes.php (as there is none!)
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'db_structure.xml')
-rw-r--r-- | db_structure.xml | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/db_structure.xml b/db_structure.xml index ac7f4b3c71b..65bdb69d95d 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -1589,74 +1589,6 @@ <table> <!-- - Namespaced Key-Value Store for arbitrary data. - - Keys are namespaced per userid and appid. - - E.g. (admin, files, foo) -> bar - --> - <name>*dbprefix*privatedata</name> - - <declaration> - - <field> - <name>keyid</name> - <type>integer</type> - <default>0</default> - <notnull>true</notnull> - <unsigned>true</unsigned> - <length>4</length> - <autoincrement>1</autoincrement> - </field> - - <!-- Foreign Key users::uid --> - <field> - <name>user</name> - <type>text</type> - <default></default> - <notnull>true</notnull> - <length>64</length> - </field> - - <field> - <name>app</name> - <type>text</type> - <default></default> - <notnull>true</notnull> - <length>255</length> - </field> - - <field> - <name>key</name> - <type>text</type> - <default></default> - <notnull>true</notnull> - <length>255</length> - </field> - - <field> - <name>value</name> - <type>text</type> - <default></default> - <notnull>true</notnull> - <length>255</length> - </field> - - <index> - <primary>true</primary> - <unique>true</unique> - <name>keyid_index</name> - <field> - <name>keyid</name> - <sorting>ascending</sorting> - </field> - </index> - - </declaration> - - </table> - - <table> - - <!-- Table for storing transactional file locking --> <name>*dbprefix*file_locks</name> |