I have to "translate" a MySQL SQL script (table and index creations basically) to PostgreSQL and have come across the following:
CREATE FULLTEXT INDEX param_description ON info_param (description ASC) ;
Where description is a TEXT column.
Is there a straightforward way to directly translate the above into some indexing command in PostgreSQL 9.1 ?