django-pg-fts icon indicating copy to clipboard operation
django-pg-fts copied to clipboard

Implementation PostgeSQL for Full Text Search for Django >= 1.7

Results 6 django-pg-fts issues
Sort by recently updated
recently updated
newest added

#7 and #9 have had fixes merged, but when you `pip install django-pg-fts` you get a version that still has those issues. Also, the `field` keyword in the migrations classes...

Relevant commit in Django project https://github.com/claudep/django/commit/a159b1facd222c20dde12f1e0117643af528d511 I'm getting: ``` File "/home/vagrant/project/venv/local/lib/python2.7/site-packages/django/db/migrations/migration.py", line 115, in apply operation.database_forwards(self.app_label, schema_editor, old_state, project_state) File "/home/vagrant/project/venv/local/lib/python2.7/site-packages/pg_fts/migrations.py", line 151, in database_forwards model = from_state.render().get_model(app_label, self.name) AttributeError:...

Hello! Is that possible to add unaccent extension to search configuration with django-pg-fts?

Tiny fix in pg_fts/fields.py. The method get_field_by_name has been deprecated and replaced with get_field. Currently just a warning but will cause an error in Django 1.10

this happens when i'm trying to use __search lookup in an fts index field. the error comes from fields.py in as_sql[282]

could you provide a comparison with possible alternatives like [django-watson](https://github.com/etianen/django-watson), [djorm-ext-pgfulltext](https://github.com/djangonauts/djorm-ext-pgfulltext), etc