diff --git a/nucypher/config/migrations/__init__.py b/nucypher/config/migrations/__init__.py index 59301244c..d58258a23 100644 --- a/nucypher/config/migrations/__init__.py +++ b/nucypher/config/migrations/__init__.py @@ -3,6 +3,7 @@ from collections import OrderedDict from .configuration_v1_to_v2 import configuration_v1_to_v2 from .configuration_v3_to_v4 import configuration_v3_to_v4 from .configuration_v4_to_v6 import configuration_v4_to_v6 +from .configuration_v5_to_v6 import configuration_v5_to_v6 MIGRATIONS = OrderedDict( { @@ -10,5 +11,6 @@ MIGRATIONS = OrderedDict( (2, 3): None, # (no-op) (3, 4): configuration_v3_to_v4, (4, 6): configuration_v4_to_v6, + (5, 6): configuration_v5_to_v6, } )