16 lines
396 B
Python
16 lines
396 B
Python
# Generated by Django 4.1.4 on 2022-12-21 15:57
|
|
|
|
from django.contrib.postgres.operations import TrigramExtension, UnaccentExtension
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("main", "0007_snapshot_file_alter_invoice_file_alter_snapshot_date"),
|
|
]
|
|
|
|
operations = [
|
|
TrigramExtension(),
|
|
UnaccentExtension(),
|
|
]
|