Skip to content

Commit

Permalink
Merge pull request #128 from thalesgroup-cert/v2
Browse files Browse the repository at this point in the history
Fix Ticked ID Bug
  • Loading branch information
ygalnezri authored Jun 19, 2024
2 parents c7752c7 + 01c1e3c commit d2d79f4
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 d2d79f4

Please sign in to comment.