Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-27 07:41:42

0001 # Generated by Django 4.2.23 on 2026-01-13 20:52
0002 
0003 from django.db import migrations, models
0004 
0005 
0006 class Migration(migrations.Migration):
0007 
0008     dependencies = [
0009         ('monitor_app', '0031_add_agent_process_fields'),
0010     ]
0011 
0012     operations = [
0013         migrations.AlterField(
0014             model_name='systemagent',
0015             name='status',
0016             field=models.CharField(choices=[('UNKNOWN', 'Unknown'), ('OK', 'OK'), ('WARNING', 'Warning'), ('ERROR', 'Error'), ('EXITED', 'Exited')], default='UNKNOWN', max_length=10),
0017         ),
0018     ]