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 2025-08-04 18:13
0002 
0003 from django.db import migrations, models
0004 
0005 
0006 class Migration(migrations.Migration):
0007 
0008     dependencies = [
0009         ('monitor_app', '0014_rename_funcname_to_lowercase'),
0010     ]
0011 
0012     operations = [
0013         migrations.CreateModel(
0014             name='PersistentState',
0015             fields=[
0016                 ('id', models.AutoField(primary_key=True, serialize=False)),
0017                 ('state_data', models.JSONField(default=dict)),
0018                 ('updated_at', models.DateTimeField(auto_now=True)),
0019             ],
0020             options={
0021                 'db_table': 'swf_persistent_state',
0022             },
0023         ),
0024         migrations.RemoveIndex(
0025             model_name='applog',
0026             name='swf_applog_timesta_33c498_idx',
0027         ),
0028         migrations.AddIndex(
0029             model_name='applog',
0030             index=models.Index(fields=['timestamp', 'app_name', 'instance_name'], name='swf_applog_timesta_ad9cbc_idx'),
0031         ),
0032     ]