From 19654ad0d8377cc1170d9755aa61a896b210cafe Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Wed, 31 Mar 2021 15:55:45 +0300 Subject: [PATCH] #3628 index will added --- ...03_31_104729_visiosoft.module.cats__add_index_table.php | 7 +------ ...31_121019_visiosoft.module.profile__add_index_table.php | 4 ---- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/addons/default/visiosoft/cats-module/migrations/2021_03_31_104729_visiosoft.module.cats__add_index_table.php b/addons/default/visiosoft/cats-module/migrations/2021_03_31_104729_visiosoft.module.cats__add_index_table.php index 4d5e88e40..6ecf73dd2 100644 --- a/addons/default/visiosoft/cats-module/migrations/2021_03_31_104729_visiosoft.module.cats__add_index_table.php +++ b/addons/default/visiosoft/cats-module/migrations/2021_03_31_104729_visiosoft.module.cats__add_index_table.php @@ -13,12 +13,7 @@ class VisiosoftModuleCatsAddIndexTable extends Migration $table->index('slug'); $table->index('parent_category_id'); $table->index('icon_id'); - $table->index('cat1'); - $table->index('country_id'); - $table->index('city'); - $table->index('finish_at'); - $table->index('status'); - $table->index('count_show_ad'); + $table->index('sort_order'); }); } } diff --git a/addons/default/visiosoft/profile-module/migrations/2021_03_31_121019_visiosoft.module.profile__add_index_table.php b/addons/default/visiosoft/profile-module/migrations/2021_03_31_121019_visiosoft.module.profile__add_index_table.php index 7ee5a44d6..bfa9683c2 100644 --- a/addons/default/visiosoft/profile-module/migrations/2021_03_31_121019_visiosoft.module.profile__add_index_table.php +++ b/addons/default/visiosoft/profile-module/migrations/2021_03_31_121019_visiosoft.module.profile__add_index_table.php @@ -14,9 +14,5 @@ class VisiosoftModuleProfileAddIndexTable extends Migration $table->index('folder_id'); }); - Schema::table('page_link_type_pages_translations', function (Blueprint $table) { - $table->index('entry_id'); - $table->index('locale'); - }); } }