Skip to content

Commit

Permalink
black 格式
Browse files Browse the repository at this point in the history
  • Loading branch information
woshiyanghai committed Oct 13, 2023
1 parent 2efb264 commit 730744f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sql/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,9 @@ class DataMaskingColumns(models.Model):
table_schema = models.CharField("字段所在库名", max_length=64)
table_name = models.CharField("字段所在表名", max_length=64)
column_name = models.CharField("字段名", max_length=64)
case_sensitive = models.BooleanField('字段区分大小写', choices=((False, '不区分'), (True, '区分')))
case_sensitive = models.BooleanField(
"字段区分大小写", choices=((False, "不区分"), (True, "区分"))
)
column_comment = models.CharField("字段描述", max_length=1024, default="", blank=True)
create_time = models.DateTimeField(auto_now_add=True)
sys_time = models.DateTimeField(auto_now=True)
Expand Down

0 comments on commit 730744f

Please sign in to comment.