12 lines
256 B
Python
12 lines
256 B
Python
from django.contrib.postgres.operations import UnaccentExtension
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recette', '0004_recette_photo_instr'),
|
|
]
|
|
|
|
operations = [UnaccentExtension()]
|