You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -65,9 +69,6 @@ SHOW default_text_search_config;
65
69
66
70
```
67
71
68
-
69
-
70
-
71
72
### Prepare the schema
72
73
73
74
By default the engine expects that parsed documents (model data) are stored in the same table as the Model in a column `searchable` of type `tsvector`. You'd need to create this column and an index in your schema. You can choose between `GIN` and `GiST` indexes in PostgreSQL.
@@ -172,6 +173,12 @@ public function searchableAdditionalArray()
172
173
];
173
174
}
174
175
```
176
+
You may want to make your searchable column hidden so it's not standing in your way
0 commit comments