id(); $table->string('contact', 255); $table->text('text'); $table->foreignId('status_id')->constrained('feedback_statuses'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('feedback'); } };