26 lines
627 B
Python
26 lines
627 B
Python
# Generated by Django 3.2.11 on 2022-01-30 10:20
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("photologue", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="gallery",
|
|
options={
|
|
"get_latest_by": "date_start",
|
|
"ordering": ["-date_start"],
|
|
"verbose_name": "gallery",
|
|
"verbose_name_plural": "galleries",
|
|
},
|
|
),
|
|
migrations.RemoveField(
|
|
model_name="gallery",
|
|
name="date_added",
|
|
),
|
|
]
|