2017-09-04 13:25:09 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("gestioncof", "0010_delete_custommail")]
|
2017-09-04 13:25:09 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="cofprofile",
|
|
|
|
name="login_clipper",
|
|
|
|
field=models.CharField(
|
|
|
|
verbose_name="Login clipper", blank=True, max_length=32
|
|
|
|
),
|
|
|
|
)
|
2017-09-04 13:25:09 +02:00
|
|
|
]
|