19 lines
396 B
Python
19 lines
396 B
Python
# Generated by Django 2.1.1 on 2018-10-11 12:57
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('quest', '0009_quest_latest_post_date'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='quest',
|
|
name='banner_url',
|
|
field=models.URLField(blank=True, null=True),
|
|
),
|
|
]
|