kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
Revert "fix(db):fix the fix of migrations regression from library drop NOCHANGELOG"
This reverts commit 801ffbce40
.
environments/review-docs-2416-j6vg8x/deployments/20780
rodzic
a9927df89c
commit
46035b9f39
|
@ -36,6 +36,7 @@ def set_all_artists_credit(apps, schema_editor):
|
|||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("music", "0058_upload_quality"),
|
||||
("playlists", "0007_alter_playlist_actor_alter_playlisttrack_uuid_and_more"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("music", "0059_remove_album_artist_remove_track_artist_artistcredit_and_more"),
|
||||
("playlists", "0007_alter_playlist_actor_alter_playlisttrack_uuid_and_more"),
|
||||
]
|
||||
|
||||
operations = []
|
|
@ -100,7 +100,7 @@ def migrate_libraries_to_playlist(apps, schema_editor):
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("music", "0060_empty_for_test"),
|
||||
("music", "0059_remove_album_artist_remove_track_artist_artistcredit_and_more"),
|
||||
("playlists", "0008_playlist_library_drop"),
|
||||
]
|
||||
operations = [
|
|
@ -3,7 +3,7 @@ from django.db import migrations
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("music", "0061_migrate_libraries_to_playlist"),
|
||||
("music", "0060_migrate_libraries_to_playlist"),
|
||||
]
|
||||
operations = [
|
||||
migrations.RemoveField(
|
|
@ -5,7 +5,7 @@ from django.db import migrations, models
|
|||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("music", "0062_del_lib_description"),
|
||||
("music", "0061_del_lib_description"),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -83,9 +83,9 @@ def test_artist_credit_migration(migrator):
|
|||
def test_migrate_libraries_to_playlist(migrator):
|
||||
music_initial_migration = (
|
||||
"music",
|
||||
"0060_empty_for_test",
|
||||
"0059_remove_album_artist_remove_track_artist_artistcredit_and_more",
|
||||
)
|
||||
music_final_migration = ("music", "0061_migrate_libraries_to_playlist")
|
||||
music_final_migration = ("music", "0060_migrate_libraries_to_playlist")
|
||||
|
||||
# Apply migrations
|
||||
migrator.migrate(
|
||||
|
|
Ładowanie…
Reference in New Issue