mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-25 15:45:23 +00:00
workaround for django 2.2 bug related with '0011_update_proxy_permissions' migration
This commit is contained in:
parent
f263d97377
commit
21fcb8cd64
2 changed files with 14 additions and 1 deletions
|
@ -9,7 +9,6 @@ class Migration(migrations.Migration):
|
||||||
initial = True
|
initial = True
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('auth', '0011_update_proxy_permissions'),
|
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
|
|
14
admin/migrations/0002_auto_20200609_0830.py
Normal file
14
admin/migrations/0002_auto_20200609_0830.py
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# Generated by Django 2.2.12 on 2020-06-09 08:30
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('admin', '0001_initial'),
|
||||||
|
('auth', '0011_update_proxy_permissions'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
]
|
Loading…
Reference in a new issue