recettes/recette/migrations/0005_postgres_unaccent.py

12 lines
256 B
Python
Raw Permalink Normal View History

2018-11-24 11:45:42 +01:00
from django.contrib.postgres.operations import UnaccentExtension
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('recette', '0004_recette_photo_instr'),
]
operations = [UnaccentExtension()]