lostplaces-backend/lostplaces/lostplaces_app/migrations/0009_place_submitted_when.py

19 lines
417 B
Python
Raw Normal View History

2020-08-03 19:14:48 +02:00
# Generated by Django 3.0.9 on 2020-08-03 16:36
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('lostplaces_app', '0008_auto_20200801_1044'),
]
operations = [
migrations.AddField(
model_name='place',
name='submitted_when',
field=models.DateTimeField(auto_now_add=True, null=True),
),
]