1
0
Fork 0
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:
catborise 2020-06-09 11:44:29 +03:00
parent f263d97377
commit 21fcb8cd64
2 changed files with 14 additions and 1 deletions

View file

@ -9,7 +9,6 @@ class Migration(migrations.Migration):
initial = True initial = True
dependencies = [ dependencies = [
('auth', '0011_update_proxy_permissions'),
] ]
operations = [ operations = [

View 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 = [
]