Conditions | 1 |
Paths | 1 |
Total Lines | 28 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
61 | public function safeDown() |
||
62 | { |
||
63 | $this->dropIndex( |
||
64 | 'idx-feedback-read', |
||
65 | 'feedback' |
||
66 | ); |
||
67 | |||
68 | $this->dropIndex( |
||
69 | 'idx-feedback-name', |
||
70 | 'feedback' |
||
71 | ); |
||
72 | |||
73 | $this->dropIndex( |
||
74 | 'idx-feedback-email', |
||
75 | 'feedback' |
||
76 | ); |
||
77 | |||
78 | $this->dropIndex( |
||
79 | 'idx-feedback-phone', |
||
80 | 'feedback' |
||
81 | ); |
||
82 | |||
83 | $this->dropIndex( |
||
84 | 'idx-feedback-subject', |
||
85 | 'feedback' |
||
86 | ); |
||
87 | |||
88 | $this->dropTable('feedback'); |
||
89 | } |
||
91 |