| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function up(): void |
||
| 13 | { |
||
| 14 | try { |
||
| 15 | Schema::table($this->prefix . 'message', static function (Blueprint $table) { |
||
| 16 | $table->text('game')->nullable()->comment('Message is a game, information about the game.')->after('document'); |
||
| 17 | }); |
||
| 18 | } catch (Throwable $e) { |
||
| 19 | Log::error($e->getMessage()); |
||
| 20 | return; // Migration may be partly done already... |
||
| 21 | } |
||
| 36 |