mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-03 00:15:46 +02:00
22 lines
511 B
Python
22 lines
511 B
Python
# Generated by Django 2.0.5 on 2019-02-19 21:53
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("helpdesk", "0024_time_spent"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="queue",
|
|
name="dedicated_time",
|
|
field=models.DurationField(
|
|
blank=True,
|
|
help_text="Time to be spent on this Queue in total",
|
|
null=True,
|
|
),
|
|
),
|
|
]
|