19 lines
407 B
Python
19 lines
407 B
Python
|
# Generated by Django 4.2.16 on 2024-12-15 06:34
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('webui', '0005_imagememo_error_message'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='imagememo',
|
||
|
name='model_name',
|
||
|
field=models.CharField(max_length=255, null=True),
|
||
|
),
|
||
|
]
|