1
0
forked from erp-dev/erp

feat: improve for report

This commit is contained in:
2026-01-16 17:25:21 +08:00
parent 0c24c7e7e9
commit 2e0b7dc335
6 changed files with 417 additions and 73 deletions

View File

@@ -0,0 +1,20 @@
from django.db import migrations
from django.contrib.postgres.indexes import GinIndex
class Migration(migrations.Migration):
dependencies = [
("stateflow", "0021_statelogparameterrecord"),
]
operations = [
migrations.AddIndex(
model_name="statelogparameterrecord",
index=GinIndex(
fields=["parameters"],
name="stfl_paramrec_params_gin",
opclasses=["jsonb_path_ops"],
),
),
]