1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/loot/migrations/0010_loot_loot_name_gin_idx.py
2022-04-11 22:43:06 +02:00

18 lines
463 B
Python

# Generated by Django 4.0.3 on 2022-04-11 18:54
import django.contrib.postgres.indexes
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('loot', '0009_auto_20211017_1850'),
]
operations = [
migrations.AddIndex(
model_name='loot',
index=django.contrib.postgres.indexes.GinIndex(fields=['name'], name='loot_name_gin_idx', opclasses=['gin_trgm_ops']),
),
]