Delete GlobalPermissions model (migrations)
It is an old model which doesn't exist anymore in kfet.models module. This adds its missing DeleteModel in migrations.
This commit is contained in:
parent
dff19199ec
commit
5b378d621a
1 changed files with 14 additions and 0 deletions
14
kfet/migrations/0062_delete_globalpermissions.py
Normal file
14
kfet/migrations/0062_delete_globalpermissions.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
('kfet', '0061_add_perms_config'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.DeleteModel(
|
||||
name='GlobalPermissions',
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue