diff --git a/addons/default/visiosoft/advs-module/migrations/2020_11_27_072549_visiosoft.module.advs__alter_index_to_all_table.php b/addons/default/visiosoft/advs-module/migrations/2020_11_27_072549_visiosoft.module.advs__alter_index_to_all_table.php new file mode 100644 index 000000000..06465ed17 --- /dev/null +++ b/addons/default/visiosoft/advs-module/migrations/2020_11_27_072549_visiosoft.module.advs__alter_index_to_all_table.php @@ -0,0 +1,19 @@ +index('entry_id'); + }); + + Schema::table('advs_productoptions_value_translations', function (Blueprint $table) { + $table->index('entry_id'); + }); + } +} diff --git a/addons/default/visiosoft/cats-module/migrations/2020_11_27_073512_visiosoft.module.cats__alter_index_to_all_table.php b/addons/default/visiosoft/cats-module/migrations/2020_11_27_073512_visiosoft.module.cats__alter_index_to_all_table.php new file mode 100644 index 000000000..85b86f7c9 --- /dev/null +++ b/addons/default/visiosoft/cats-module/migrations/2020_11_27_073512_visiosoft.module.cats__alter_index_to_all_table.php @@ -0,0 +1,19 @@ +index('entry_id'); + }); + + Schema::table('cats_placeholderforsearch_translations', function (Blueprint $table) { + $table->index('entry_id'); + }); + } +} diff --git a/addons/default/visiosoft/location-module/migrations/2020_11_27_071503_visiosoft.module.location__alter_index_to_all_table.php b/addons/default/visiosoft/location-module/migrations/2020_11_27_071503_visiosoft.module.location__alter_index_to_all_table.php new file mode 100644 index 000000000..21ea24d2b --- /dev/null +++ b/addons/default/visiosoft/location-module/migrations/2020_11_27_071503_visiosoft.module.location__alter_index_to_all_table.php @@ -0,0 +1,31 @@ +index('entry_id'); + }); + + Schema::table('location_countries_translations', function (Blueprint $table) { + $table->index('entry_id'); + }); + + Schema::table('location_districts_translations', function (Blueprint $table) { + $table->index('entry_id'); + }); + + Schema::table('location_neighborhoods_translations', function (Blueprint $table) { + $table->index('entry_id'); + }); + + Schema::table('location_village_translations', function (Blueprint $table) { + $table->index('entry_id'); + }); + } +}