0009_alter_binary_status.py 480 B

123456789101112131415161718
  1. # Generated by Django 6.0 on 2026-01-02 08:43
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('machine', '0008_add_worker_type_field'),
  6. ]
  7. operations = [
  8. migrations.AlterField(
  9. model_name='binary',
  10. name='status',
  11. field=models.CharField(choices=[('queued', 'Queued'), ('installed', 'Installed')], db_index=True, default='queued', max_length=16),
  12. ),
  13. ]