1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/locations/migrations/0009_alter_historicallocation_options_and_more.py

22 lines
713 B
Python

# Generated by Django 4.0.5 on 2022-06-19 11:46
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('locations', '0008_location_location_name_gin_idx'),
]
operations = [
migrations.AlterModelOptions(
name='historicallocation',
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical Location', 'verbose_name_plural': 'historical Locations'},
),
migrations.AlterField(
model_name='historicallocation',
name='history_date',
field=models.DateTimeField(db_index=True),
),
]