index it broke installation

This commit is contained in:
Fatih Alp 2021-04-08 13:14:15 +03:00
parent 2ad12903db
commit 2187593707

View File

@ -8,11 +8,12 @@ class VisiosoftModuleProfileAddIndexTable extends Migration
{ {
public function up() public function up()
{ {
Schema::table('files_files', function (Blueprint $table) { // it broke installation
$table->index('deleted_at'); // Schema::table('files_files', function (Blueprint $table) {
$table->index('name'); // $table->index('deleted_at');
$table->index('folder_id'); // $table->index('name');
}); // $table->index('folder_id');
// });
} }
} }