21 lines
490 B
Python
21 lines
490 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.5 on 2016-07-24 06:33
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cvkbrno', '0022_auto_20160723_1502'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='memberwork',
|
|
name='comment',
|
|
field=models.CharField(blank=True, max_length=100, verbose_name='Comment'),
|
|
),
|
|
]
|