19 lines
392 B
Python
19 lines
392 B
Python
|
# Generated by Django 4.1 on 2022-08-08 01:38
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("bots", "0007_queueditem_image_hash"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="queueditem",
|
||
|
name="processed",
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|