diff --git a/database/migrations/2025_09_13_094942_drop_lat_lng_from_harims_table.php b/database/migrations/2025_09_13_094942_drop_lat_lng_from_harims_table.php new file mode 100644 index 00000000..002540c3 --- /dev/null +++ b/database/migrations/2025_09_13_094942_drop_lat_lng_from_harims_table.php @@ -0,0 +1,30 @@ +dropColumn('lat'); + $table->dropColumn('lng'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('harims', function (Blueprint $table) { + $table->string('lat'); + $table->string('lng'); + }); + } +};