895f7e062c
It is an old model which doesn't exist anymore in kfet.models module. This adds its missing DeleteModel in migrations.
14 lines
275 B
Python
14 lines
275 B
Python
# -*- coding: utf-8 -*-
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('kfet', '0061_add_perms_config'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.DeleteModel(
|
|
name='GlobalPermissions',
|
|
),
|
|
]
|