Denorm default true

This commit is contained in:
Agate 2020-08-04 14:24:12 +02:00
parent f50a70f67a
commit c29d0b17ea
3 changed files with 3 additions and 2 deletions

View File

@ -1198,7 +1198,7 @@ On non-docker setup, you don't need to configure this setting.
"""
# When this is set to default=True, we need to reenable migration music/0042
# to ensure data is populated correctly on existing pods
MUSIC_USE_DENORMALIZATION = env.bool("MUSIC_USE_DENORMALIZATION", default=False)
MUSIC_USE_DENORMALIZATION = env.bool("MUSIC_USE_DENORMALIZATION", default=True)
USERS_INVITATION_EXPIRATION_DAYS = env.int(
"USERS_INVITATION_EXPIRATION_DAYS", default=14

View File

@ -35,6 +35,6 @@ def rewind(apps, schema_editor):
class Migration(migrations.Migration):
dependencies = [("music", "0041_auto_20191021_1705")]
dependencies = [("music", "0052_auto_20200505_0810")]
operations = [migrations.RunPython(denormalize, rewind)]

View File

@ -0,0 +1 @@
Improved keyboard accessibility (#1125)