aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-11-05 08:21:53 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-11-05 08:21:53 +0100
commit6b6f19bb94a26fafdb5c18a619c058d7f24bfc2b (patch)
tree7aa4fba3bc2e2606aa45360ab21ae3cb0b27a3c0
parent2f4fa5b49c38c75e60b0cb46e2878e4176e0dd03 (diff)
downloadnextcloud-server-6b6f19bb94a26fafdb5c18a619c058d7f24bfc2b.tar.gz
nextcloud-server-6b6f19bb94a26fafdb5c18a619c058d7f24bfc2b.zip
Drop unused table file_map
* used only for windows support * windows support was dropped in 8.2.0 - see #17379 * was introduced in fd8cb9974be30aaca0d65d1807d6a4f784da5f0b * ref #18935
-rw-r--r--db_structure.xml61
-rw-r--r--lib/repair/dropoldtables.php1
-rw-r--r--version.php2
3 files changed, 2 insertions, 62 deletions
diff --git a/db_structure.xml b/db_structure.xml
index 6efcf497cf7..8135746233e 100644
--- a/db_structure.xml
+++ b/db_structure.xml
@@ -129,67 +129,6 @@
<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>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>
- <notnull>true</notnull>
- <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>
- <primary>true</primary>
- <unique>true</unique>
- <field>
- <name>logic_path_hash</name>
- <sorting>ascending</sorting>
- </field>
- </index>
-
- <index>
- <name>file_map_pp_index</name>
- <unique>true</unique>
- <field>
- <name>physic_path_hash</name>
- <sorting>ascending</sorting>
- </field>
- </index>
-
- </declaration>
-
- </table>
-
- <table>
-
<!--
Bidirectional Map for Mimetypes and Mimetype Id
- Assigns each mimetype (and supertype) a unique mimetype id integer.
diff --git a/lib/repair/dropoldtables.php b/lib/repair/dropoldtables.php
index cfe0df6cb5b..6ca04be08c7 100644
--- a/lib/repair/dropoldtables.php
+++ b/lib/repair/dropoldtables.php
@@ -74,6 +74,7 @@ class DropOldTables extends BasicEmitter implements RepairStep {
'calendar_objects',
'calendar_share_calendar',
'calendar_share_event',
+ 'file_map',
'foldersize',
'fscache',
'locks',
diff --git a/version.php b/version.php
index dd499a8d1d8..7f45f5899e1 100644
--- a/version.php
+++ b/version.php
@@ -25,7 +25,7 @@
// We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
// when updating major/minor version number.
-$OC_Version = array(9, 0, 0, 1);
+$OC_Version = array(9, 0, 0, 2);
// The human readable string
$OC_VersionString = '9.0 pre alpha';