<?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::create('brand_partners', function (Blueprint $table) {
$table->id();
$table->string('name', 255);
$table->string('logo_path', 500)->nullable();
$table->string('website_url', 500)->nullable();
$table->integer('sort_order')->default(0);
$table->boolean('is_active')->default(true);
$table->timestamps();
});
}
public function down(): void { Schema::dropIfExists('brand_partners'); }
};