Include Sinfonie
This commit is contained in:
parent
eb5b6cb65d
commit
7bf2964261
1 changed files with 11 additions and 0 deletions
|
|
@ -77,6 +77,11 @@ def create_initial_club(apps, schema_editor):
|
||||||
club_id=3,
|
club_id=3,
|
||||||
polymorphic_ctype_id=polymorphic_ctype_id,
|
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(
|
Alias.objects.get_or_create(
|
||||||
id=5,
|
id=5,
|
||||||
|
|
@ -96,6 +101,12 @@ def create_initial_club(apps, schema_editor):
|
||||||
name="BDS",
|
name="BDS",
|
||||||
normalized_name="bds",
|
normalized_name="bds",
|
||||||
)
|
)
|
||||||
|
Alias.objects.get_or_create(
|
||||||
|
id=8,
|
||||||
|
note_id=8,
|
||||||
|
name="Sinfonie",
|
||||||
|
normalized_name="sinfonie",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue