diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-02-15 21:04:48 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-02-15 21:04:48 +0100 |
commit | 2ed850e05b46d820528813c2f2415dad60c1c570 (patch) | |
tree | a46c29c4fd7c01f71261499c7a33996a23830fc5 /db_structure.xml | |
parent | 9738fae3cf1ad18593d21eb62e138e00c01f5f36 (diff) | |
parent | 425d41aaf93e1cd3a44ddc794414683e8e2c4648 (diff) | |
download | nextcloud-server-2ed850e05b46d820528813c2f2415dad60c1c570.tar.gz nextcloud-server-2ed850e05b46d820528813c2f2415dad60c1c570.zip |
merge master into filecache_mtime
Diffstat (limited to 'db_structure.xml')
-rw-r--r-- | db_structure.xml | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/db_structure.xml b/db_structure.xml index a86e5e6a8fd..37db7d05968 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -109,6 +109,14 @@ </field> <field> + <name>logic_path_hash</name> + <type>text</type> + <default></default> + <notnull>true</notnull> + <length>32</length> + </field> + + <field> <name>physic_path</name> <type>text</type> <default></default> @@ -116,11 +124,19 @@ <length>512</length> </field> + <field> + <name>physic_path_hash</name> + <type>text</type> + <default></default> + <notnull>true</notnull> + <length>32</length> + </field> + <index> <name>file_map_lp_index</name> <unique>true</unique> <field> - <name>logic_path</name> + <name>logic_path_hash</name> <sorting>ascending</sorting> </field> </index> @@ -129,7 +145,7 @@ <name>file_map_pp_index</name> <unique>true</unique> <field> - <name>physic_path</name> + <name>physic_path_hash</name> <sorting>ascending</sorting> </field> </index> @@ -250,7 +266,7 @@ <type>integer</type> <default></default> <notnull>true</notnull> - <length>4</length> + <length>8</length> </field> <field> |