fixed postgres search

This commit is contained in:
vabene1111
2021-04-11 21:02:47 +02:00
parent fb0f424d82
commit fc2a60a4ba
4 changed files with 23 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
# Generated by Django 3.2 on 2021-04-11 19:01
from django.contrib.postgres.operations import UnaccentExtension, TrigramExtension
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0118_auto_20210406_1805'),
]
operations = [
TrigramExtension(),
UnaccentExtension(),
]