Skip to content
Snippets Groups Projects
Commit 9d13dbb9 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

subject contact on reminder contains hour

parent 4097a0d0
No related branches found
No related tags found
1 merge request!44Subject contact on field contains hour
# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2017-04-06 09:46
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0032_configurationitem_email_items'),
]
operations = [
migrations.AlterField(
model_name='subject',
name='datetime_contact_reminder',
field=models.DateTimeField(blank=True, null=True, verbose_name=b'Contact on'),
),
]
......@@ -39,7 +39,7 @@ class Subject(models.Model):
verbose_name='Postponed',
default=False
)
datetime_contact_reminder = models.DateField(
datetime_contact_reminder = models.DateTimeField(
null=True,
blank=True,
verbose_name='Contact on',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment