id(); $table->string('contact_name'); // This column must exist $table->string('contact_phone'); $table->text('description'); $table->string('address'); $table->string('status'); $table->string('google_maps_link'); $table->string('city'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('faults'); } };