19 lines
420 B
Python
19 lines
420 B
Python
|
# Generated by Django 5.1.2 on 2024-10-21 18:30
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('idescriptor', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='image',
|
||
|
name='alt_text',
|
||
|
field=models.TextField(blank=True, help_text='Describe the image', null=True),
|
||
|
),
|
||
|
]
|