Skip to content
Snippets Groups Projects
Commit c29d0b17 authored by Agate's avatar Agate 💬
Browse files

Denorm default true

parent f50a70f6
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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)]
Improved keyboard accessibility (#1125)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment