mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-16 08:54:49 +08:00
19 lines
480 B
Python
19 lines
480 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),
|
|
),
|
|
]
|