Add migration for start and end date
This commit is contained in:
parent
60389ae1b0
commit
f60592d37b
1 changed files with 23 additions and 0 deletions
23
photologue_custom/migrations/0002_auto_20211011_1956.py
Normal file
23
photologue_custom/migrations/0002_auto_20211011_1956.py
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
# Generated by Django 2.2.24 on 2021-10-11 19:56
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('photologue_custom', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='galleryextended',
|
||||||
|
name='date_end',
|
||||||
|
field=models.DateField(blank=True, null=True, verbose_name='end date'),
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='galleryextended',
|
||||||
|
name='date_start',
|
||||||
|
field=models.DateField(blank=True, null=True, verbose_name='start date'),
|
||||||
|
),
|
||||||
|
]
|
||||||
Loading…
Add table
Add a link
Reference in a new issue