| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function down () |
||
| 25 | { |
||
| 26 | Schema::table(config('phptelegrambot.database.prefix', '') . 'edited_message', static function (Blueprint $table) { |
||
| 27 | $table->dropForeign (config('phptelegrambot.database.prefix', '') . 'edited_message_ibfk_2'); |
||
| 28 | |||
| 29 | $table->foreign ('chat_id', config('phptelegrambot.database.prefix', '') . 'edited_message_ibfk_2') |
||
| 30 | ->references ('chat_id')->on (config('phptelegrambot.database.prefix', '') . 'message') |
||
| 31 | ->onUpdate('RESTRICT')->onDelete('RESTRICT'); |
||
| 32 | }); |
||
| 33 | } |
||
| 34 | } |
||
| 35 |