mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-06 07:47:53 +10:00
23 lines
558 B
Python
23 lines
558 B
Python
# Generated by Django 6.0 on 2026-01-02 08:43
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("machine", "0008_add_worker_type_field"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="binary",
|
|
name="status",
|
|
field=models.CharField(
|
|
choices=[("queued", "Queued"), ("installed", "Installed")],
|
|
db_index=True,
|
|
default="queued",
|
|
max_length=16,
|
|
),
|
|
),
|
|
]
|