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()
{
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');
// });
}
}