# 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 = [ ('characters', '0013_auto_20211125_1358'), ] operations = [ migrations.AddIndex( model_name='character', index=django.contrib.postgres.indexes.GinIndex(fields=['name'], name='character_name_gin_idx', opclasses=['gin_trgm_ops']), ), ]