mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 15:33:09 +01:00
18 lines
506 B
Python
18 lines
506 B
Python
# -*- coding: utf-8 -*-
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('helpdesk', '0007_max_length_by_integer'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='queue',
|
|
name='permission_name',
|
|
field=models.CharField(help_text='Name used in the django.contrib.auth permission system', max_length=50, null=True, verbose_name='Django auth permission name', blank=True),
|
|
),
|
|
]
|