I have followed this tutorial and added the PostgreSQL FTS capability to one of the tables of my Django (I'm using 1.8.1) project.
Basically, I have an extra fts_document
field in my table my_table
of the my_app
app.
I'd like to keep the databases up-to-date without having to manually copy and paste commands in PostgreSQL shell on each machine. Unlike the tutorial, I didn't implement the South part, as I got South conflicting with the current implementation and also found out that Django no has a native way to do these migrations.
I wasn't able to find any example code, so I am stuck and need help. I don't post an example code cause I followed the exact structure and steps like in the tutorial.