Skip to content

Commit d7242b7

Browse files
authored
Update models.py
fix ci
1 parent 199f7bf commit d7242b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ResourceGroup(models.Model):
1919
ding_webhook = models.CharField("钉钉webhook地址", max_length=255, blank=True)
2020
feishu_webhook = models.CharField("飞书webhook地址", max_length=255, blank=True)
2121
qywx_webhook = models.CharField("企业微信webhook地址", max_length=255, blank=True)
22-
group_checklist = models.TextField("上线checklist", default='')
22+
group_checklist = models.TextField("上线checklist", default="")
2323
is_deleted = models.IntegerField("是否删除", choices=((0, "否"), (1, "是")), default=0)
2424
create_time = models.DateTimeField(auto_now_add=True)
2525
sys_time = models.DateTimeField(auto_now=True)

0 commit comments

Comments
 (0)