Skip to content

Commit

Permalink
del_flg index
Browse files Browse the repository at this point in the history
  • Loading branch information
lxerxa committed Aug 28, 2022
1 parent 6e726e8 commit c5f901a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/Http/Controllers/ProjectController.php
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ public function createIndex(Request $request, $id)
$col->index('parent_id');
$col->index('assignee.id');
$col->index('reporter.id');
$col->index('del_flg');
});
Schema::collection('activity_' . $project->key, function($col) {
$col->index('event_key');
Expand Down Expand Up @@ -414,6 +415,7 @@ public function createMultiIndex(Request $request)
$col->index('no');
$col->index('assignee.id');
$col->index('reporter.id');
$col->index('del_flg');
});
Schema::collection('activity_' . $project->key, function($col) {
$col->index('event_key');
Expand Down

0 comments on commit c5f901a

Please sign in to comment.