diff --git a/packages/Webkul/Admin/src/Database/Migrations/2023_07_31_125232_rename_image_and_category_banner_columns_from_categories_table.php b/packages/Webkul/Admin/src/Database/Migrations/2023_07_31_125232_rename_image_and_category_banner_columns_from_categories_table.php deleted file mode 100644 index 0bd97688cfb..00000000000 --- a/packages/Webkul/Admin/src/Database/Migrations/2023_07_31_125232_rename_image_and_category_banner_columns_from_categories_table.php +++ /dev/null @@ -1,38 +0,0 @@ -text('logo_path')->nullable()->after('position'); - $table->text('banner_path')->nullable()->after('additional'); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - if (Schema::hasColumns('categories', ['logo_path', 'banner_path'])) { - Schema::dropColumns('categories', ['logo_path', 'banner_path']); - } - - Schema::table('categories', function (Blueprint $table) { - $table->text('image')->nullable()->after('position'); - $table->text('category_banner')->nullable()->after('additional'); - }); - } -};