| 123456789101112131415161718 |
- # 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),
- ),
- ]
|