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'); } };