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
class Post(db.Model):
...
title = db.Column(db.String)
ketwords = db.Column(db.Text)
# will hold for language full name for each row.
row_language = db.Column(db.String, defualt='english' )
search_vector = db.Column(TSVectorType('keywords', 'title', regconfig='post.row_language'))
Provision for setting
regconfig
as a row column.like on model,
on migrations,
This will generate a query like this,
Trigger will be,
The text was updated successfully, but these errors were encountered: