From 5c403340ca149cdf515e703b6dc816f78d9f5028 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Thu, 25 Dec 2025 13:06:38 +0530 Subject: [PATCH] removed image path column in sticker details --- ...d_image_path_column_to_sticker_details.php | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 database/migrations/2025_12_25_130435_removed_image_path_column_to_sticker_details.php diff --git a/database/migrations/2025_12_25_130435_removed_image_path_column_to_sticker_details.php b/database/migrations/2025_12_25_130435_removed_image_path_column_to_sticker_details.php new file mode 100644 index 0000000..66e21bc --- /dev/null +++ b/database/migrations/2025_12_25_130435_removed_image_path_column_to_sticker_details.php @@ -0,0 +1,28 @@ +dropColumn('image_path'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + // Schema::table('sticker_details', function (Blueprint $table) { + // // + // }); + } +}; -- 2.49.1