Skip to content
Snippets Groups Projects
0132_worker_comment.py 520 B
Newer Older
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2018-12-04 10:31
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('web', '0131_study_default_voucher_expiration_in_months'),
    ]

    operations = [
        migrations.AddField(
            model_name='worker',
            name='comment',
            field=models.TextField(blank=True, max_length=1024, null=True, verbose_name=b'Comment'),
        ),
    ]