This commit is contained in:
IGNY8 VPS (Salman)
2025-12-01 08:54:52 +00:00
parent b2012e9563
commit ca5451c795
7 changed files with 196 additions and 8 deletions

View File

@@ -0,0 +1,25 @@
# Generated by Django 5.2.8 on 2025-12-01 08:21
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('igny8_core_auth', '0003_add_sync_event_model'),
('publishing', '0001_initial'),
('writer', '0010_add_review_status_to_content'),
]
operations = [
migrations.AlterField(
model_name='publishingrecord',
name='content',
field=models.ForeignKey(blank=True, help_text='Content being published', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='publishing_records', to='writer.content'),
),
migrations.AddIndex(
model_name='deploymentrecord',
index=models.Index(fields=['site', 'status'], name='igny8_deplo_site_id_0de333_idx'),
),
]