Fix migrations between master and stable

remotes/origin/issue/4795/notification_even_they_are_disabled
David Barragán Merino 2016-05-31 13:54:29 +02:00
parent 513e62fb83
commit eb87f17d2e
2 changed files with 20 additions and 16 deletions

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.2 on 2016-05-31 11:50
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('projects', '0043_auto_20160530_1004'),
]
operations = [
migrations.AlterField(
model_name='project',
name='blocked_code',
field=models.CharField(blank=True, choices=[('blocked-by-nonpayment', 'This project is blocked due to payment failure'), ('blocked-by-staff', 'This project is blocked by admin staff'), ('blocked-by-owner-leaving', 'This project is blocked because the owner left'), ('blocked-by-deleting', "This project is blocked while it's deleted")], default=None, max_length=255, null=True, verbose_name='blocked code'),
),
]

View File

@ -1,16 +0,0 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.2 on 2016-05-30 16:36
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('projects', '0043_auto_20160530_1004'),
('projects', '0042_auto_20160525_0911'),
]
operations = [
]