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