mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-53578 search: Enable course id indexing so it can be filtered
This commit is contained in:
parent
fed66ad9e2
commit
a4902f66bb
1 changed files with 2 additions and 2 deletions
|
@ -118,7 +118,7 @@ class document implements \renderable, \templatable {
|
||||||
'courseid' => array(
|
'courseid' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'stored' => true,
|
'stored' => true,
|
||||||
'indexed' => false
|
'indexed' => true
|
||||||
),
|
),
|
||||||
'owneruserid' => array(
|
'owneruserid' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
|
@ -145,7 +145,7 @@ class document implements \renderable, \templatable {
|
||||||
'userid' => array(
|
'userid' => array(
|
||||||
'type' => 'int',
|
'type' => 'int',
|
||||||
'stored' => true,
|
'stored' => true,
|
||||||
'indexed' => false
|
'indexed' => true
|
||||||
),
|
),
|
||||||
'description1' => array(
|
'description1' => array(
|
||||||
'type' => 'string',
|
'type' => 'string',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue