1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-12-26 06:22:22 +00:00
plateforme-tfjm2/draw/migrations/0005_draw_last_message.py
Emmy D'Anello c9fcfcf498
Add messages for better understanding
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2023-04-04 10:25:49 +02:00

18 lines
456 B
Python

# Generated by Django 4.1.7 on 2023-03-24 10:46
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("draw", "0004_remove_teamdraw_index_teamdraw_choose_index_and_more"),
]
operations = [
migrations.AddField(
model_name="draw",
name="last_message",
field=models.TextField(blank=True, default="", verbose_name="last message"),
),
]