id(); $table->string('asunto'); $table->text('mensaje'); $table->boolean('resuelta')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('consultas'); } };