Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-02-07 02:36:38 +0400
committerThomas Mueller <thomas.mueller@tmit.eu>2013-02-07 02:41:52 +0400
commitfd8cb9974be30aaca0d65d1807d6a4f784da5f0b (patch)
treef7dabbfa07d725b3e73f1b8df11a9eebc4933416 /db_structure.xml
parent223f538bb8666c7943784c12f1213384df1a41c0 (diff)
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.xml44
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>