2016-08-04 17:38:58 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import django.core.validators
|
2018-10-06 12:35:49 +02:00
|
|
|
from django.db import migrations, models
|
2016-08-04 17:38:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0007_auto_20160804_0641")]
|
2016-08-04 17:38:58 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2018-10-06 12:35:49 +02:00
|
|
|
model_name="account",
|
|
|
|
name="trigramme",
|
|
|
|
field=models.CharField(
|
|
|
|
unique=True,
|
|
|
|
validators=[django.core.validators.RegexValidator(regex="^[^a-z]{3}$")],
|
|
|
|
db_index=True,
|
|
|
|
max_length=3,
|
|
|
|
),
|
|
|
|
)
|
2016-08-04 17:38:58 +02:00
|
|
|
]
|