| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function up () |
||
| 11 | { |
||
| 12 | Schema::table(config('phptelegrambot.database.prefix', '') . 'edited_message', static function (Blueprint $table) { |
||
| 13 | $table->dropForeign (config('phptelegrambot.database.prefix', '') . 'edited_message_ibfk_2'); |
||
| 14 | |||
| 15 | $table->foreign ( |
||
| 16 | ['chat_id', 'message_id'], |
||
| 17 | config('phptelegrambot.database.prefix', '') . 'edited_message_ibfk_2' |
||
| 18 | ) |
||
| 19 | ->references (['chat_id', 'id'])->on (config('phptelegrambot.database.prefix', '') . 'message') |
||
| 20 | ->onUpdate('RESTRICT')->onDelete('RESTRICT'); |
||
| 21 | }); |
||
| 22 | } |
||
| 23 | |||
| 35 |