Files
penracourses/longs/migrations/0005_longseries_description.py
Ross 671c6f9ca3 .
2023-08-07 22:02:25 +01:00

19 lines
534 B
Python

# Generated by Django 4.1.4 on 2023-08-07 21:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('longs', '0004_rename_description_longseries_info'),
]
operations = [
migrations.AddField(
model_name='longseries',
name='description',
field=models.CharField(blank=True, help_text='Description of the series. This is usually visable to the user (as the name of the stack)', max_length=255, null=True),
),
]