docs: add comment for postgres fulltext
This commit is contained in:
parent
5a19344e02
commit
dcbbe15546
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ impl MigrationTrait for Migration {
|
||||||
.name("index-objects-content")
|
.name("index-objects-content")
|
||||||
.table(Objects::Table)
|
.table(Objects::Table)
|
||||||
.col(Objects::Audience)
|
.col(Objects::Audience)
|
||||||
.full_text()
|
.full_text() // on postgres this may fail, run `CREATE EXTENSION btree_gin;` to fix
|
||||||
.to_owned()
|
.to_owned()
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
Loading…
Reference in a new issue