Register migration

This commit is contained in:
Inex Code 2022-09-22 19:41:48 +03:00
parent 7a1e8af8fe
commit 0a09a338b8
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@ at api.skippedMigrations in userdata.json and populating it
with IDs of the migrations to skip.
Adding DISABLE_ALL to that array disables the migrations module entirely.
"""
from selfprivacy_api.migrations.check_for_failed_binds_migration import CheckForFailedBindsMigration
from selfprivacy_api.utils import ReadUserData
from selfprivacy_api.migrations.fix_nixos_config_branch import FixNixosConfigBranch
from selfprivacy_api.migrations.create_tokens_json import CreateTokensJson
@ -21,6 +22,7 @@ migrations = [
CreateTokensJson(),
MigrateToSelfprivacyChannel(),
MountVolume(),
CheckForFailedBindsMigration(),
]