File indexing completed on 2026-08-12 09:36:15
0001
0002
0003 from django.db import migrations, models
0004
0005
0006 class Migration(migrations.Migration):
0007
0008 dependencies = [
0009 ('monitor_app', '0001_initial'),
0010 ]
0011
0012 operations = [
0013 migrations.CreateModel(
0014 name='CachedProduct',
0015 fields=[
0016 ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
0017 ('key', models.CharField(max_length=300, unique=True)),
0018 ('value', models.JSONField(default=dict)),
0019 ('built_at', models.DateTimeField(blank=True, null=True)),
0020 ('build_seconds', models.FloatField(blank=True, null=True)),
0021 ('building_since', models.DateTimeField(blank=True, null=True)),
0022 ('updated_at', models.DateTimeField(auto_now=True)),
0023 ],
0024 options={
0025 'db_table': 'swf_cached_product',
0026 },
0027 ),
0028 ]