Files
Sistema-Educativo-Laravel/database/migrations/2026_05_20_000001_create_promociones_table.php

29 lines
839 B
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::create('promociones', function (Blueprint $table) {
$table->id();
$table->string('titulo');
$table->text('descripcion')->nullable();
$table->string('imagen')->nullable();
$table->date('fecha_inicio');
$table->date('fecha_fin');
$table->enum('status', ['activo', 'inactivo'])->default('activo');
$table->foreignId('plantel_id')->constrained('plantels')->cascadeOnDelete();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('promociones');
}
};