From 218759370791a04d137ae6a1eaa0df38b30f769e Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Thu, 8 Apr 2021 13:14:15 +0300 Subject: [PATCH] index it broke installation --- ...1019_visiosoft.module.profile__add_index_table.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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 bfa9683c2..c47aec73a 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 @@ -8,11 +8,12 @@ class VisiosoftModuleProfileAddIndexTable extends Migration { public function up() { - Schema::table('files_files', function (Blueprint $table) { - $table->index('deleted_at'); - $table->index('name'); - $table->index('folder_id'); - }); + // it broke installation + // Schema::table('files_files', function (Blueprint $table) { + // $table->index('deleted_at'); + // $table->index('name'); + // $table->index('folder_id'); + // }); } }