mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-04 17:05:36 +02:00
20 lines
506 B
Python
20 lines
506 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
|
|
),
|
|
),
|
|
]
|