Skip to content

Commit

Permalink
Merge pull request #233 from KerkhoffTechnologies/3783-notes-without-…
Browse files Browse the repository at this point in the history
…titles-display-very-strangely-in-nope-pod

[ISSUE-3783] Altering title in the TicketNote
  • Loading branch information
kti-sam authored Nov 13, 2024
2 parents 2a8da0a + 2407929 commit a4359be
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion djautotask/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
VERSION = (1, 6, 10, 'final')
VERSION = (1, 6, 11, 'final')

# pragma: no cover
if VERSION[-1] != "final":
Expand Down
18 changes: 18 additions & 0 deletions djautotask/migrations/0122_alter_ticketnote_title.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.16 on 2024-11-13 12:08

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('djautotask', '0121_merge_0120_merge_20241101_1316_0120_resource_title'),
]

operations = [
migrations.AlterField(
model_name='ticketnote',
name='title',
field=models.CharField(blank=True, max_length=250, null=True),
),
]
2 changes: 1 addition & 1 deletion djautotask/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def get_queryset(self):


class TicketNote(TimeStampedModel, Note):
title = models.CharField(max_length=250)
title = models.CharField(max_length=250, blank=True, null=True)
description = models.CharField(max_length=3200)
create_date_time = models.DateTimeField(blank=True, null=True)
last_activity_date = models.DateTimeField(blank=True, null=True)
Expand Down

0 comments on commit a4359be

Please sign in to comment.