From 7d83a4a59fa43ab2428f8cc15de184dd0fbc9c28 Mon Sep 17 00:00:00 2001 From: Olivier DOSSMANN Date: Mon, 4 Sep 2017 23:47:33 +0200 Subject: [PATCH] Correction : fichier de migration manquant. --- .../0007_help_text_on_console_name.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 collection/games/migrations/0007_help_text_on_console_name.py diff --git a/collection/games/migrations/0007_help_text_on_console_name.py b/collection/games/migrations/0007_help_text_on_console_name.py new file mode 100644 index 0000000..1f0014e --- /dev/null +++ b/collection/games/migrations/0007_help_text_on_console_name.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.4 on 2017-09-04 21:46 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('games', '0006_auto_20170901_2041'), + ] + + operations = [ + migrations.AlterField( + model_name='console', + name='name', + field=models.CharField(help_text='Nom de console le plus utilisé.', max_length=255, verbose_name='nom'), + ), + ]