19 lines
526 B
Python
19 lines
526 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 = [
|
|
('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),
|
|
),
|
|
]
|