Skip to content

Commit

Permalink
Fix Ticked ID Bug
Browse files Browse the repository at this point in the history
Fixed a bug related to the Ticket ID that was preventing the creation or modification of a ticket with a free format, enabling smoother integration and precise traceability.
  • Loading branch information
NEZRI Ygal authored and NEZRI Ygal committed Jun 19, 2024
1 parent 9f095e9 commit 01c1e3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Watcher/Watcher/site_monitoring/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Site(models.Model):
"""
domain_name = models.CharField(max_length=100, unique=True)
ticket_id = models.CharField(max_length=20, blank=True, null=True)
rtir = models.IntegerField()
rtir = models.IntegerField(unique=True, blank=True, null=True)
ip = models.GenericIPAddressField(blank=True, null=True)
ip_second = models.GenericIPAddressField(blank=True, null=True)
ip_monitoring = models.BooleanField(default=True)
Expand Down

0 comments on commit 01c1e3c

Please sign in to comment.