Brak opisu

0009_auto_20200413_0902.py 578B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10.5 on 2020-04-13 09:02
  3. from __future__ import unicode_literals
  4. import django.core.validators
  5. from django.db import migrations, models
  6. class Migration(migrations.Migration):
  7. dependencies = [
  8. ('counter', '0008_auto_20170122_1732'),
  9. ]
  10. operations = [
  11. migrations.AlterField(
  12. model_name='counter',
  13. name='trigramme',
  14. field=models.CharField(max_length=3, validators=[django.core.validators.RegexValidator(regex='^\\S{3}$')], verbose_name='trigram'),
  15. ),
  16. ]