Fixed #81: Search now unaccent letters for queries

This commit is contained in:
Eliot Berriot 2018-02-27 19:56:02 +01:00
parent 9b0d5541e0
commit 62d0381f91
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
5 changed files with 30 additions and 9 deletions

View file

@ -0,0 +1,12 @@
# Generated by Django 2.0.2 on 2018-02-27 18:43
from django.db import migrations
from django.contrib.postgres.operations import UnaccentExtension
class Migration(migrations.Migration):
dependencies = []
operations = [
UnaccentExtension()
]