19 lines
403 B
Python
19 lines
403 B
Python
|
# Generated by Django 2.1.1 on 2018-10-05 13:21
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('quest', '0008_auto_20181005_0825'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='quest',
|
||
|
name='latest_post_date',
|
||
|
field=models.DateTimeField(blank=True, null=True),
|
||
|
),
|
||
|
]
|