Regenerate migrations

This commit is contained in:
shamoon
2026-01-25 17:04:16 -08:00
parent b3324e16f6
commit 978906a3aa
2 changed files with 5 additions and 5 deletions

View File

@@ -45,7 +45,7 @@ def revoke_share_link_bundle_permissions(apps, schema_editor):
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
("documents", "0004_remove_document_storage_type"),
("documents", "0005_workflowtrigger_filter_has_any_correspondents_and_more"),
]
operations = [

View File

@@ -2,8 +2,8 @@ from documents.tests.utils import TestMigrations
class TestMigrateShareLinkBundlePermissions(TestMigrations):
migrate_from = "0004_remove_document_storage_type"
migrate_to = "0005_sharelinkbundle"
migrate_from = "0005_workflowtrigger_filter_has_any_correspondents_and_more"
migrate_to = "0006_sharelinkbundle"
def setUpBeforeMigration(self, apps):
User = apps.get_model("auth", "User")
@@ -24,8 +24,8 @@ class TestMigrateShareLinkBundlePermissions(TestMigrations):
class TestReverseMigrateShareLinkBundlePermissions(TestMigrations):
migrate_from = "0005_sharelinkbundle"
migrate_to = "0004_remove_document_storage_type"
migrate_from = "0006_sharelinkbundle"
migrate_to = "0005_workflowtrigger_filter_has_any_correspondents_and_more"
def setUpBeforeMigration(self, apps):
User = apps.get_model("auth", "User")