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