| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function down(): void |
||
| 23 | { |
||
| 24 | Schema::table('telegram_update', static function (Blueprint $table) { |
||
| 25 | $table->dropForeign('telegram_update_ibfk_1'); |
||
| 26 | $table->dropForeign('telegram_update_ibfk_2'); |
||
| 27 | $table->dropForeign('telegram_update_ibfk_3'); |
||
| 28 | $table->dropForeign('telegram_update_ibfk_4'); |
||
| 29 | $table->dropForeign('telegram_update_ibfk_5'); |
||
| 30 | }); |
||
| 33 |