Browse Source

Merge pull request #20320 from owncloud/drop-file_map

Drop unused table file_map
tags/v9.0beta1
Thomas Müller 8 years ago
parent
commit
6e7461f64c
2 changed files with 1 additions and 61 deletions
  1. 0
    61
      db_structure.xml
  2. 1
    0
      lib/repair/dropoldtables.php

+ 0
- 61
db_structure.xml View File

@@ -127,67 +127,6 @@

</table>

<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>

<!--

+ 1
- 0
lib/repair/dropoldtables.php View File

@@ -74,6 +74,7 @@ class DropOldTables extends BasicEmitter implements RepairStep {
'calendar_objects',
'calendar_share_calendar',
'calendar_share_event',
'file_map',
'foldersize',
'fscache',
'locks',

Loading…
Cancel
Save