# 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), ), ]