File indexing completed on 2026-04-27 07:41:42
0001
0002
0003 from django.db import migrations, models
0004
0005
0006 class Migration(migrations.Migration):
0007
0008 dependencies = [
0009 ('monitor_app', '0021_subscriber_client_ip_subscriber_client_location_and_more'),
0010 ]
0011
0012 operations = [
0013 migrations.AddField(
0014 model_name='workflowmessage',
0015 name='message_metadata',
0016 field=models.JSONField(blank=True, default=dict, help_text='Extensible metadata for monitoring, debugging, and system tracking', null=True),
0017 ),
0018 migrations.AlterField(
0019 model_name='systemagent',
0020 name='agent_type',
0021 field=models.CharField(choices=[('daqsim', 'DAQ Simulator'), ('data', 'Data Agent'), ('processing', 'Processing Agent'), ('fastmon', 'Fast Monitoring Agent'), ('monitor', 'Monitor System'), ('sse_sender', 'SSE Test Sender'), ('sse_receiver', 'SSE Client/Receiver'), ('test', 'Test Agent'), ('other', 'Other')], max_length=20),
0022 ),
0023 ]