Olivier DOSSMANN
5820bdc63a
Modification de : * ajout de champs d'aide sur les champs booléens * création des fichiers de migration pour ces champs d'aide * choix de l'ordre des champs dans l'interface admin de Games
31 lines
899 B
Python
31 lines
899 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-08-24 18:43
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('games', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='game',
|
|
name='playing',
|
|
field=models.BooleanField(default=False, help_text="You're currently playing this game."),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='game',
|
|
name='unplayed',
|
|
field=models.BooleanField(default=False, help_text='You never played this game.'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='game',
|
|
name='wish',
|
|
field=models.BooleanField(default=False, help_text="You're waiting X-mas father offers you this game."),
|
|
),
|
|
]
|