Sfoglia il codice sorgente

[scrobbles] Small migration to move to scrobble_set

Colin Powell 3 settimane fa
parent
commit
16ce513c2e

+ 19 - 0
vrobbler/apps/scrobbles/migrations/0074_alter_scrobble_item.py

@@ -0,0 +1,19 @@
+# Generated by Django 4.2.26 on 2025-12-03 19:37
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('scrobbles', '0073_alter_scrobble_options_scrobble_item_and_more'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='scrobble',
+            name='item',
+            field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='scrobble_set', to='scrobbles.scrobblableitem'),
+        ),
+    ]