Remove the num field in CofProfile

This commit is contained in:
Martin Pépin 2017-05-22 00:06:17 +01:00
parent 76dcaf7d51
commit dba8a0a857
5 changed files with 28 additions and 33 deletions

View file

@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('gestioncof', '0010_delete_custommail'),
]
operations = [
migrations.RemoveField(
model_name='cofprofile',
name='num',
),
]