diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-06 23:36:38 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-06 23:41:52 +0100 |
commit | fd8cb9974be30aaca0d65d1807d6a4f784da5f0b (patch) | |
tree | f7dabbfa07d725b3e73f1b8df11a9eebc4933416 /db_structure.xml | |
parent | 223f538bb8666c7943784c12f1213384df1a41c0 (diff) | |
download | nextcloud-server-fd8cb9974be30aaca0d65d1807d6a4f784da5f0b.tar.gz nextcloud-server-fd8cb9974be30aaca0d65d1807d6a4f784da5f0b.zip |
initial version of a local storage implementation which will use unique slugified filename on the local filesystem.
This implementation will only be enabled on windows based system to solve the issues around UTF-8 file names with php on windows.
Diffstat (limited to 'db_structure.xml')
-rw-r--r-- | db_structure.xml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/db_structure.xml b/db_structure.xml index f4111bfabd0..fc7f1082ffa 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -96,6 +96,50 @@ <table> + <name>*dbprefix*file_map</name> + + <declaration> + + <field> + <name>logic_path</name> + <type>text</type> + <default></default> + <notnull>true</notnull> + <length>512</length> + </field> + + <field> + <name>physic_path</name> + <type>text</type> + <default></default> + <notnull>true</notnull> + <length>512</length> + </field> + + <index> + <name>file_map_lp_index</name> + <unique>true</unique> + <field> + <name>logic_path</name> + <sorting>ascending</sorting> + </field> + </index> + + <index> + <name>file_map_pp_index</name> + <unique>true</unique> + <field> + <name>physic_path</name> + <sorting>ascending</sorting> + </field> + </index> + + </declaration> + + </table> + + <table> + <name>*dbprefix*mimetypes</name> <declaration> |