21 lines
574 B
Python
21 lines
574 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.4 on 2017-01-16 16:37
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('camps', '0015_auto_20170116_1634'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='camp',
|
|
name='description',
|
|
field=models.TextField(default=b'', help_text=b'Description of the camp, shown on the camp frontpage. HTML and markdown supported.', verbose_name=b'Description'),
|
|
),
|
|
]
|