id(); // $table->string('field'); // Add your columns here $table->timestamps(); $table->softDeletes(); // Optional: for soft deletes // Indexes, remember they are important // $table->index('field'); }); } public function down(): void { Schema::dropIfExists('{{tableNameSnakeCase}}'); } };