File indexing completed on 2026-04-27 07:41:42
0001 """Add TF summary fields to StfFile and FastMonFile.
0002
0003 Generated manually to add:
0004 - StfFile.tf_count
0005 - FastMonFile.tf_count, FastMonFile.tf_first, FastMonFile.tf_last
0006
0007 Fields are nullable to avoid forcing a default for existing rows.
0008 """
0009
0010
0011 from django.db import migrations, models
0012
0013
0014 class Migration(migrations.Migration):
0015
0016 dependencies = [
0017 ("monitor_app", "0034_dpid"),
0018 ]
0019
0020 operations = [
0021 migrations.AddField(
0022 model_name="stffile",
0023 name="tf_count",
0024 field=models.IntegerField(blank=True, null=True),
0025 ),
0026 migrations.AddField(
0027 model_name="fastmonfile",
0028 name="tf_count",
0029 field=models.IntegerField(blank=True, null=True),
0030 ),
0031 migrations.AddField(
0032 model_name="fastmonfile",
0033 name="tf_first",
0034 field=models.IntegerField(blank=True, null=True),
0035 ),
0036 migrations.AddField(
0037 model_name="fastmonfile",
0038 name="tf_last",
0039 field=models.IntegerField(blank=True, null=True),
0040 ),
0041 ]