From 109aad86b170daadf2908b97ce1ffd7632ed5b58 Mon Sep 17 00:00:00 2001 From: joddyabott Date: Sat, 13 Sep 2025 15:58:07 +0330 Subject: [PATCH] remove tow culm such as lat and lng in harim table --- ..._094942_drop_lat_lng_from_harims_table.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2025_09_13_094942_drop_lat_lng_from_harims_table.php 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'); + }); + } +};