mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 15:33:09 +01:00
19 lines
449 B
Python
19 lines
449 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),
|
|
),
|
|
]
|