19 lines
387 B
Python
19 lines
387 B
Python
|
# Generated by Django 4.2.16 on 2024-12-10 10:34
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('webui', '0004_imagememo_status'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='imagememo',
|
||
|
name='error_message',
|
||
|
field=models.TextField(null=True),
|
||
|
),
|
||
|
]
|