| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function up(): void |
||
| 13 | { |
||
| 14 | DB::transaction(function () { |
||
| 15 | Schema::table('feature_table2', function (Blueprint $table) { |
||
| 16 | $table |
||
| 17 | ->bigInteger('feature_table3_id') |
||
| 18 | ->nullable(true); |
||
| 19 | $table |
||
| 20 | ->foreign('feature_table3_id') |
||
| 21 | ->on('feature_table3') |
||
| 22 | ->references('id'); |
||
| 23 | }); |
||
| 38 |