diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-11-12 14:44:00 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-11-20 15:03:12 +0100 |
commit | d8a171df26a33710ad162b6acc9f46d00976b986 (patch) | |
tree | 958a8024bd6bf2d6ef9b1f6f80b01ec99763df87 /db_structure.xml | |
parent | 568def2b61e45d51d4506ad08723c3e2173481b4 (diff) | |
download | nextcloud-server-d8a171df26a33710ad162b6acc9f46d00976b986.tar.gz nextcloud-server-d8a171df26a33710ad162b6acc9f46d00976b986.zip |
implement share via link 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 851c8aa998d..8ddb67a3d80 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -581,6 +581,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> |