retrofairie/database/migrations/2025_02_23_210155_create_programs_table.php
2025-02-23 13:13:47 -08:00

27 lines
721 B
PHP

<?php
use App\Models\Category;
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('programs', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->foreignIdFor(Category::class)->constrained('categories');
$table->text('description')->nullable();
$table->string('website')->nullable();
$table->timestamps();
$table->softDeletes();
});
}
public function down(): void
{
Schema::dropIfExists('programs');
}
};