2017-09-09 22:03:32 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2018-10-06 12:35:49 +02:00
|
|
|
("gestioncof", "0011_remove_cofprofile_num"),
|
|
|
|
("gestioncof", "0011_longer_clippers"),
|
2017-09-09 22:03:32 +02:00
|
|
|
]
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
operations = []
|