taiga-back/taiga/projects/migrations/0037_auto_20160208_1751.py

20 lines
631 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('projects', '0036_project_transfer_token'),
]
operations = [
migrations.AlterField(
model_name='project',
name='blocked_code',
field=models.CharField(max_length=255, blank=True, verbose_name='blocked code', choices=[('blocked-by-staff', 'This project was blocked by staff'), ('blocked-by-owner-leaving', 'This project was blocked because the owner left')], null=True, default=None),
),
]