19 lines
417 B
Python
19 lines
417 B
Python
|
# 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),
|
||
|
),
|
||
|
]
|