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', '0003_pandataskoperation'),
0010 ]
0011
0012 operations = [
0013 migrations.CreateModel(
0014 name='CapcomNotice',
0015 fields=[
0016 ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
0017 ('created_at', models.DateTimeField(auto_now_add=True, db_index=True)),
0018 ('source', models.CharField(max_length=100)),
0019 ('severity', models.CharField(default='info', max_length=20)),
0020 ('title', models.CharField(max_length=300)),
0021 ('detail', models.TextField(blank=True, default='')),
0022 ('url', models.CharField(blank=True, default='', max_length=500)),
0023 ('dedup_key', models.CharField(blank=True, default='', max_length=200)),
0024 ],
0025 options={
0026 'db_table': 'swf_capcom_notice',
0027 'ordering': ['created_at'],
0028 },
0029 ),
0030 ]