Jarvis/jarvis/followup/migrations/0045_note_title.py

21 lines
500 B
Python

# Generated by Django 4.2 on 2023-06-12 07:01
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("followup", "0044_alter_seasoninformation_number_of_hours_per_week_and_more"),
]
operations = [
migrations.AddField(
model_name="note",
name="title",
field=models.CharField(
default="Note of the week", max_length=255, verbose_name="Title"
),
),
]