This commit is contained in:
Ross
2023-08-07 22:02:25 +01:00
parent 6ab1355919
commit 671c6f9ca3
5 changed files with 75 additions and 1 deletions
@@ -0,0 +1,18 @@
# Generated by Django 4.1.4 on 2023-08-07 21:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('atlas', '0009_rename_description_series_info'),
]
operations = [
migrations.AddField(
model_name='series',
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),
),
]