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', '0033_add_ai_memory'),
0010 ]
0011
0012 operations = [
0013 migrations.CreateModel(
0014 name='DataProvenance',
0015 fields=[
0016 ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
0017 ('dpid', models.CharField(db_index=True, max_length=12, unique=True)),
0018 ('tool_name', models.CharField(max_length=100)),
0019 ('tool_args', models.JSONField(default=dict)),
0020 ('created_at', models.DateTimeField(auto_now_add=True)),
0021 ],
0022 options={
0023 'db_table': 'swf_data_provenance',
0024 'ordering': ['-created_at'],
0025 },
0026 ),
0027 ]