add providers.py to the list of migrations

Makes providers.py actually run.
pull/19/head
Houkime 2022-10-28 10:17:57 +00:00
parent b0c26b876a
commit decb98afe2
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ from selfprivacy_api.migrations.migrate_to_selfprivacy_channel import (
MigrateToSelfprivacyChannel,
)
from selfprivacy_api.migrations.mount_volume import MountVolume
from selfprivacy_api.migrations.providers import CreateProviderFields
migrations = [
FixNixosConfigBranch(),
@ -25,6 +26,7 @@ migrations = [
MigrateToSelfprivacyChannel(),
MountVolume(),
CheckForFailedBindsMigration(),
CreateProviderFields(),
]