4 changed files with 3 additions and 30 deletions
@ -1,28 +0,0 @@ |
|||||
<?php |
|
||||
|
|
||||
use Illuminate\Database\Migrations\Migration; |
|
||||
use Illuminate\Database\Schema\Blueprint; |
|
||||
use Illuminate\Support\Facades\Schema; |
|
||||
|
|
||||
return new class extends Migration |
|
||||
{ |
|
||||
/** |
|
||||
* Run the migrations. |
|
||||
*/ |
|
||||
public function up(): void |
|
||||
{ |
|
||||
Schema::table('tipos_veiculos', function (Blueprint $table) { |
|
||||
$table->string('tipo_combustible')->after('nombre')->nullable(); |
|
||||
}); |
|
||||
} |
|
||||
|
|
||||
/** |
|
||||
* Reverse the migrations. |
|
||||
*/ |
|
||||
public function down(): void |
|
||||
{ |
|
||||
Schema::table('tipos_veiculos', function (Blueprint $table) { |
|
||||
$table->dropColumn('tipo_combustible'); |
|
||||
}); |
|
||||
} |
|
||||
}; |
|
Loading…
Reference in new issue