From 91611612d449d96957d7dc58ee92c156f67b765d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zden=C4=9Bk=20B=C3=B6hm?= Date: Thu, 17 Aug 2023 09:56:11 +0200 Subject: [PATCH] Fix order of 0013, 0014 and 0015 migrations. --- CHANGELOG.rst | 5 +++++ ..._multiple_files_pload.py => 0013_multiple_files_pload.py} | 2 +- ...d_name_help_text.py => 0014_fileupload_name_help_text.py} | 2 +- ... => 0015_add_field_is_enable_autofill_from_url_params.py} | 2 +- aldryn_forms/migrations/0016_date_time_fields.py | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) rename aldryn_forms/migrations/{0014_multiple_files_pload.py => 0013_multiple_files_pload.py} (98%) rename aldryn_forms/migrations/{0015_fileupload_name_help_text.py => 0014_fileupload_name_help_text.py} (95%) rename aldryn_forms/migrations/{0013_add_field_is_enable_autofill_from_url_params.py => 0015_add_field_is_enable_autofill_from_url_params.py} (91%) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0c577180..2ca67338 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,11 @@ Changelog ========= +7.0.2 (2023-08-22) +================== + +* Fix order of 0013, 0014 and 0015 migrations. + 7.0.1 (2023-07-31) ================== diff --git a/aldryn_forms/migrations/0014_multiple_files_pload.py b/aldryn_forms/migrations/0013_multiple_files_pload.py similarity index 98% rename from aldryn_forms/migrations/0014_multiple_files_pload.py rename to aldryn_forms/migrations/0013_multiple_files_pload.py index 75d8ec4d..de93752b 100644 --- a/aldryn_forms/migrations/0014_multiple_files_pload.py +++ b/aldryn_forms/migrations/0013_multiple_files_pload.py @@ -13,7 +13,7 @@ class Migration(migrations.Migration): dependencies = [ - ('aldryn_forms', '0013_add_field_is_enable_autofill_from_url_params'), + ('aldryn_forms', '0012_auto_20190104_1242'), ] operations = [ diff --git a/aldryn_forms/migrations/0015_fileupload_name_help_text.py b/aldryn_forms/migrations/0014_fileupload_name_help_text.py similarity index 95% rename from aldryn_forms/migrations/0015_fileupload_name_help_text.py rename to aldryn_forms/migrations/0014_fileupload_name_help_text.py index 7031a309..a65b581c 100644 --- a/aldryn_forms/migrations/0015_fileupload_name_help_text.py +++ b/aldryn_forms/migrations/0014_fileupload_name_help_text.py @@ -8,7 +8,7 @@ class Migration(migrations.Migration): dependencies = [ - ('aldryn_forms', '0014_multiple_files_pload'), + ('aldryn_forms', '0013_multiple_files_pload'), ] operations = [ diff --git a/aldryn_forms/migrations/0013_add_field_is_enable_autofill_from_url_params.py b/aldryn_forms/migrations/0015_add_field_is_enable_autofill_from_url_params.py similarity index 91% rename from aldryn_forms/migrations/0013_add_field_is_enable_autofill_from_url_params.py rename to aldryn_forms/migrations/0015_add_field_is_enable_autofill_from_url_params.py index 3946cf53..45b14cf4 100644 --- a/aldryn_forms/migrations/0013_add_field_is_enable_autofill_from_url_params.py +++ b/aldryn_forms/migrations/0015_add_field_is_enable_autofill_from_url_params.py @@ -6,7 +6,7 @@ class Migration(migrations.Migration): dependencies = [ - ('aldryn_forms', '0012_auto_20190104_1242'), + ('aldryn_forms', '0014_fileupload_name_help_text'), ] operations = [ diff --git a/aldryn_forms/migrations/0016_date_time_fields.py b/aldryn_forms/migrations/0016_date_time_fields.py index c60cc03e..6be9c237 100644 --- a/aldryn_forms/migrations/0016_date_time_fields.py +++ b/aldryn_forms/migrations/0016_date_time_fields.py @@ -9,7 +9,7 @@ class Migration(migrations.Migration): dependencies = [ - ('aldryn_forms', '0015_fileupload_name_help_text'), + ('aldryn_forms', '0015_add_field_is_enable_autofill_from_url_params'), ] operations = [