Include Sinfonie

This commit is contained in:
Jean-Baptiste Doderlein 2024-08-13 16:10:51 +02:00
parent eb5b6cb65d
commit 7bf2964261

View file

@ -77,6 +77,11 @@ def create_initial_club(apps, schema_editor):
club_id=3,
polymorphic_ctype_id=polymorphic_ctype_id,
)
NoteClub.objects.get_or_create(
id=8,
club_id=4,
polymorphic_ctype_id=polymorphic_ctype_id,
)
Alias.objects.get_or_create(
id=5,
@ -96,6 +101,12 @@ def create_initial_club(apps, schema_editor):
name="BDS",
normalized_name="bds",
)
Alias.objects.get_or_create(
id=8,
note_id=8,
name="Sinfonie",
normalized_name="sinfonie",
)
class Migration(migrations.Migration):