Projet

Général

Profil

0001-add-missed-migration-44175.patch

Emmanuel Cazenave, 17 juin 2020 15:22

Télécharger (1,36 ko)

Voir les différences:

Subject: [PATCH] add missed migration (#44175)

 .../migrations/0047_auto_20200617_1521.py     | 28 +++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 chrono/agendas/migrations/0047_auto_20200617_1521.py
chrono/agendas/migrations/0047_auto_20200617_1521.py
1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.11.18 on 2020-06-17 13:21
3
from __future__ import unicode_literals
4

  
5
import chrono.agendas.models
6
from django.db import migrations, models
7

  
8

  
9
class Migration(migrations.Migration):
10

  
11
    dependencies = [
12
        ('agendas', '0046_event_duration'),
13
    ]
14

  
15
    operations = [
16
        migrations.AlterField(
17
            model_name='event',
18
            name='slug',
19
            field=models.SlugField(
20
                blank=True,
21
                default=None,
22
                max_length=160,
23
                null=True,
24
                validators=[chrono.agendas.models.validate_not_digit],
25
                verbose_name='Identifier',
26
            ),
27
        ),
28
    ]
0
-