| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function down(): void |
||
| 26 | { |
||
| 27 | try { |
||
| 28 | Schema::table($this->prefix . 'message', static function (Blueprint $table) { |
||
| 29 | $table->dropColumn('passport_data'); |
||
| 30 | $table->dropColumn('animation'); |
||
| 31 | }); |
||
| 32 | } catch (Throwable $e) { |
||
| 33 | Log::error($e->getMessage()); |
||
| 34 | return; // Migration may be partly done already... |
||
| 35 | } |
||
| 38 |