| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class AddColumnsToFeatureTable3 extends Migration |
||
| 11 | { |
||
| 12 | public function up(): void |
||
| 13 | { |
||
| 14 | DB::transaction(function () { |
||
| 15 | Schema::table('feature_table3', function (Blueprint $table) { |
||
| 16 | $table->string('name'); |
||
| 17 | $table->string('code'); |
||
| 18 | }); |
||
| 19 | }); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function down(): void |
||
| 29 | ]); |
||
| 30 | }); |
||
| 34 |