diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-11-26 07:42:53 -0800 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-11-26 07:42:53 -0800 |
commit | 71e8755d318eb9a415b15f5775506ecf8a8d134f (patch) | |
tree | a9778edb2956902e8211b7f556ebb6f468e39fd5 /db_structure.xml | |
parent | 588bbd2c9f36761a8bf6f0b736d3042940c6fa18 (diff) | |
parent | 995b5c073922afd5d4fae00cad7e1bfc87c0ac73 (diff) | |
download | nextcloud-server-71e8755d318eb9a415b15f5775506ecf8a8d134f.tar.gz nextcloud-server-71e8755d318eb9a415b15f5775506ecf8a8d134f.zip |
Merge pull request #380 from butonic/feature_share_link_with_token
Feature share link with token
Diffstat (limited to 'db_structure.xml')
-rw-r--r-- | db_structure.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/db_structure.xml b/db_structure.xml index e1da6448c8f..db43ef21140 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -595,6 +595,21 @@ <notnull>false</notnull> </field> + <field> + <name>token</name> + <type>text</type> + <default></default> + <notnull>false</notnull> + <length>32</length> + </field> + + <index> + <name>token_index</name> + <field> + <name>token</name> + <sorting>ascending</sorting> + </field> + </index> </declaration> </table> |