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:
Aurélien Delobelle 2017-10-27 03:00:33 +02:00
parent dff19199ec
commit 5b378d621a

View 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',
),
]