mirror of
https://github.com/retspen/webvirtcloud
synced 2024-10-31 19:44:16 +00:00
Merge pull request #512 from Info-IIG/develop
Fix dependencies reference nonexistent in appsettings migrations
This commit is contained in:
commit
89ca8010f4
1 changed files with 3 additions and 4 deletions
|
@ -1,9 +1,8 @@
|
|||
# Generated by Django 3.2.12 on 2022-06-29 12:13
|
||||
# Generated by Django 3.2.13 on 2022-06-30 07:17
|
||||
|
||||
from django.db import migrations
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
|
||||
def add_default_settings(apps, schema_editor):
|
||||
setting = apps.get_model("appsettings", "AppSettings")
|
||||
db_alias = schema_editor.connection.alias
|
||||
|
@ -21,9 +20,9 @@ def del_default_settings(apps, schema_editor):
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('appsettings', '0006_alter_appsettings_id'),
|
||||
('appsettings', '0005_auto_20200911_1233'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RunPython(add_default_settings, del_default_settings),
|
||||
migrations.RunPython(add_default_settings, del_default_settings),
|
||||
]
|
Loading…
Reference in a new issue