mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 07:53:19 +01:00
20 lines
472 B
Python
20 lines
472 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('helpdesk', '0006_email_maxlength'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customfield',
|
|
name='label',
|
|
field=models.CharField(help_text='The display label for this field', max_length=30, verbose_name='Label'),
|
|
),
|
|
]
|