mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 23:43:11 +01:00
19 lines
477 B
Python
19 lines
477 B
Python
# Generated by Django 2.0.5 on 2019-02-06 13:24
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('helpdesk', '0023_add_enable_notifications_on_email_events_to_ticket'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='followup',
|
|
name='time_spent',
|
|
field=models.DurationField(blank=True, help_text='Time spent on this follow up', null=True),
|
|
),
|
|
]
|