50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
# Generated by Django 3.2.9 on 2023-05-26 08:24
|
|
|
|
import django.contrib.postgres.indexes
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('rog', '0040_auto_20221105_1939'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.DeleteModel(
|
|
name='JpnAdminPerf',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='JpnSubPerf',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='location',
|
|
name='category',
|
|
field=models.CharField(blank=True, db_index=True, max_length=2048, null=True, verbose_name='Category'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='location',
|
|
name='event_active',
|
|
field=models.BooleanField(db_index=True, default=True, verbose_name='Is Event active'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='location',
|
|
name='event_name',
|
|
field=models.CharField(blank=True, db_index=True, max_length=2048, null=True, verbose_name='Event name'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='location',
|
|
name='group',
|
|
field=models.CharField(blank=True, db_index=True, max_length=2048, null=True, verbose_name='Group'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='location',
|
|
name='location_id',
|
|
field=models.IntegerField(blank=True, db_index=True, null=True, verbose_name='Location id'),
|
|
),
|
|
migrations.AddIndex(
|
|
model_name='location',
|
|
index=django.contrib.postgres.indexes.GistIndex(fields=['geom'], name='rog_locatio_geom_4793cc_gist'),
|
|
),
|
|
]
|