add migration
This commit is contained in:
parent
f296ea4121
commit
54016c2f0c
18
bots/migrations/0008_queueditem_processed.py
Normal file
18
bots/migrations/0008_queueditem_processed.py
Normal file
@ -0,0 +1,18 @@
|
||||
# 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),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue
Block a user