Fixes for indexes
This commit is contained in:
parent
9b723f11cb
commit
2c6c7e964c
|
|
@ -14,7 +14,7 @@ return new class extends Migration
|
|||
public function up()
|
||||
{
|
||||
Schema::table('documents', function (Blueprint $table) {
|
||||
$table->index(['documentable_id', 'documentable_type','deleted_at']);
|
||||
$table->index(['documentable_id', 'documentable_type', 'deleted_at']);
|
||||
});
|
||||
|
||||
Schema::table('expenses', function (Blueprint $table) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue