Conditions | 1 |
Paths | 1 |
Total Lines | 23 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
62 | public function safeDown() |
||
63 | { |
||
64 | $this->dropIndex( |
||
65 | 'idx-articles-alias', |
||
66 | 'articles' |
||
67 | ); |
||
68 | |||
69 | $this->dropIndex( |
||
70 | 'idx-articles-active', |
||
71 | 'articles' |
||
72 | ); |
||
73 | |||
74 | $this->dropForeignKey( |
||
75 | 'fk-articles-pageId', |
||
76 | 'articles' |
||
77 | ); |
||
78 | |||
79 | $this->dropIndex( |
||
80 | 'idx-articles-pageId', |
||
81 | 'articles' |
||
82 | ); |
||
83 | |||
84 | $this->dropMultiLanguageTable('articles'); |
||
85 | } |
||
87 |