Skip to content

Commit

Permalink
missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
matijakolaric committed Dec 19, 2024
1 parent a601160 commit 3fa5232
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions music_publisher/migrations/0008_release_artist.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Generated by Django 3.2.14 on 2022-07-26 14:56

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):
dependencies = [
("music_publisher", "0007_auto_20220724_1028"),
]

operations = [
migrations.AddField(
model_name="release",
name="artist",
field=models.ForeignKey(
blank=True,
help_text="Leave empty if a compilation by different artists.",
null=True,
on_delete=django.db.models.deletion.PROTECT,
to="music_publisher.artist",
verbose_name="Display Artist",
),
),
]

0 comments on commit 3fa5232

Please sign in to comment.