23 lines
605 B
Python
23 lines
605 B
Python
# Generated by Django 2.2.25 on 2022-01-06 12:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("actu", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="actu",
|
|
name="rainbow",
|
|
field=models.CharField(
|
|
choices=[("y", "Oui"), ("n", "Non")],
|
|
default="n",
|
|
max_length=1,
|
|
verbose_name="Actu en arc-en-ciel (ne pas mettre d'émoji, il prennent aussi la couleur et c'est moche)",
|
|
),
|
|
),
|
|
]
|