mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-13 13:16:39 +02:00
adding migration for bugfix 'changed max_length given by string to integer;'
This commit is contained in:
parent
11467f6e50
commit
c0939d4b38
19
helpdesk/migrations/0007_max_length_by_integer.py
Normal file
19
helpdesk/migrations/0007_max_length_by_integer.py
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# -*- 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'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
x
Reference in New Issue
Block a user