Skip to content

Commit

Permalink
Fix order of 0013, 0014 and 0015 migrations.
Browse files Browse the repository at this point in the history
  • Loading branch information
zbohm committed Aug 22, 2023
1 parent e6dd309 commit 9161161
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
==================

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class Migration(migrations.Migration):

dependencies = [
('aldryn_forms', '0014_multiple_files_pload'),
('aldryn_forms', '0013_multiple_files_pload'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Migration(migrations.Migration):

dependencies = [
('aldryn_forms', '0012_auto_20190104_1242'),
('aldryn_forms', '0014_fileupload_name_help_text'),
]

operations = [
Expand Down
2 changes: 1 addition & 1 deletion aldryn_forms/migrations/0016_date_time_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit 9161161

Please sign in to comment.