alfortville: add missing migration for new subtype

This commit is contained in:
Frédéric Péters 2015-10-16 15:24:17 +02:00
parent f7f3112360
commit ce070e3b51
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('alfortville', '0003_inbox_comments'),
]
operations = [
migrations.AlterField(
model_name='inbox',
name='subtype',
field=models.PositiveSmallIntegerField(default=1, choices=[(1, b'info'), (2, b'avis'), (3, b'mandatory-avis')]),
preserve_default=True,
),
]