Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function up(): void |
||
12 | { |
||
13 | try { |
||
14 | Schema::table($this->prefix . 'message', static function (Blueprint $table) { |
||
15 | $table->text('animation')->nullable()->comment('Message is an animation, information about the animation')->after('document'); |
||
16 | $table->text('passport_data')->nullable()->comment('Telegram Passport data')->after('connected_website'); |
||
17 | }); |
||
18 | } catch (Throwable $e) { |
||
19 | return; // Migration may be partly done already... |
||
20 | } |
||
21 | } |
||
22 | |||
35 |