Chore: upgrade to DRF 3.15 (#7134)

This commit is contained in:
shamoon
2024-07-09 09:57:53 -07:00
committed by GitHub
parent 4ad4862641
commit bb83c1eb0a
8 changed files with 178 additions and 24 deletions

View File

@@ -5,7 +5,12 @@ from documents.tests.utils import TestMigrations
class TestMigrateWorkflow(TestMigrations):
migrate_from = "1043_alter_savedviewfilterrule_rule_type"
migrate_to = "1044_workflow_workflowaction_workflowtrigger_and_more"
dependencies = (("paperless_mail", "0024_alter_mailrule_name_and_more"),)
dependencies = (
(
"paperless_mail",
"0025_alter_mailaccount_owner_alter_mailrule_owner_and_more",
),
)
def setUpBeforeMigration(self, apps):
User = apps.get_model("auth", "User")