This commit is contained in:
Lizandro Guarnizo
2026-01-28 14:54:45 -05:00
parent 2eef39c2ea
commit 861d507536
3 changed files with 38 additions and 5 deletions
@@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('telas', function (Blueprint $table) {
if (Schema::hasColumn('telas', 'foto')) {
$table->dropColumn('foto');
}
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('telas', function (Blueprint $table) {
if (! Schema::hasColumn('telas', 'foto')) {
$table->string('foto')->nullable()->after('tipo');
}
});
}
};