-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue with settings.LANGUAGES of the using project being reflec…
…ted in the migration state this third party library Also fixes `python src/manage.py makemigrations --check` and: "Your models in app(s): 'mail_editor' have changes that are not yet reflected in a migration, and so won't be applied."
- Loading branch information
Bart van der Schoor
committed
Apr 13, 2023
1 parent
f99e5c4
commit 9892fdc
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
mail_editor/migrations/0013_alter_mailtemplate_language.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.15 on 2023-04-13 09:06 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('mail_editor', '0012_auto_20230102_1549'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='mailtemplate', | ||
name='language', | ||
field=models.CharField(blank=True, max_length=10, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters