Skip to content

Commit

Permalink
[ISSUE-3783] Altering title in the TicketNote
Browse files Browse the repository at this point in the history
  • Loading branch information
ssarwar-topleft committed Nov 13, 2024
1 parent 885c7ad commit 1841664
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, 9, 'final')
VERSION = (1, 6, 10, 'final')

# pragma: no cover
if VERSION[-1] != "final":
Expand Down
18 changes: 18 additions & 0 deletions djautotask/migrations/0121_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-12 16:03

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('djautotask', '0120_merge_20241101_1316'),
]

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 @@ -443,7 +443,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 1841664

Please sign in to comment.