refactor: remove designers table migration and update layout structure for improved readability and organization

This commit is contained in:
pacnpal
2025-03-25 11:33:47 -04:00
parent 8eac13d51b
commit 86263db9d9
3 changed files with 54 additions and 236 deletions

View File

@@ -1,27 +0,0 @@
<?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('designers', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('slug')->unique();
$table->text('description')->nullable();
$table->string('website')->nullable();
$table->date('founded_date')->nullable();
$table->string('headquarters')->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('designers');
}
};