From f06a0dec4a5c16bf9b8e4073efe99018f83ec337 Mon Sep 17 00:00:00 2001 From: novakzaballa Date: Mon, 23 Oct 2023 23:03:48 -0400 Subject: [PATCH] test: Test testmon by changing the environment model --- api/environments/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/environments/models.py b/api/environments/models.py index fb714401443b..3d288af9e08c 100644 --- a/api/environments/models.py +++ b/api/environments/models.py @@ -64,7 +64,7 @@ class Environment( history_record_class_path = "environments.models.HistoricalEnvironment" related_object_type = RelatedObjectType.ENVIRONMENT - name = models.CharField(max_length=2000) + name = models.CharField(max_length=2100) created_date = models.DateTimeField("DateCreated", auto_now_add=True) description = models.TextField(null=True, blank=True, max_length=20000) project = models.ForeignKey(