mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-03 00:15:46 +02:00
21 lines
493 B
Python
21 lines
493 B
Python
# -*- coding: utf-8 -*-
|
|
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",
|
|
),
|
|
),
|
|
]
|