19 lines
489 B
Python
19 lines
489 B
Python
# Generated by Django 5.0.2 on 2024-12-18 23:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0064_casecollection_exam_open_access'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='series',
|
|
name='total_image_size',
|
|
field=models.BigIntegerField(blank=True, help_text='Stores a (cached) total size of images within the series', null=True),
|
|
),
|
|
]
|