Просмотр файла database/upgrades/2025_07_17_185259_add_active_to_items.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
public function up(): void
{
Schema::table('items', function (Blueprint $table) {
$table->boolean('active')->default(true)->after('phone');
});
}
public function down(): void
{
Schema::table('items', function (Blueprint $table) {
$table->dropColumn('active');
});
}
};