18 lines
419 B
Python
18 lines
419 B
Python
# Generated by Django 2.0 on 2018-01-25 21:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('events', '0007_add-city-lonlat'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='team',
|
|
name='description',
|
|
field=models.TextField(blank=True, help_text='Team Description', null=True),
|
|
),
|
|
]
|