U 增加发布申请标题字段长度

pull/586/head
vapao 2022-10-08 15:04:27 +08:00
parent 5ad4a34a65
commit 35506a5690
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class DeployRequest(models.Model, ModelMixin):
)
deploy = models.ForeignKey(Deploy, on_delete=models.CASCADE)
repository = models.ForeignKey(Repository, null=True, on_delete=models.SET_NULL)
name = models.CharField(max_length=50)
name = models.CharField(max_length=100)
type = models.CharField(max_length=2, choices=TYPES, default='1')
extra = models.TextField()
host_ids = models.TextField()