fix: log-service entity boolean TINYINT(1) 对齐 MySQL
Co-Authored-By: Claude <noreply@anthropic.com>
这个提交包含在:
父节点
b6ad2ff6ae
当前提交
a7242f56c1
@ -32,7 +32,7 @@ public class LogIssueEntity {
|
|||||||
@Column(nullable = false)
|
@Column(nullable = false)
|
||||||
private int count = 1;
|
private int count = 1;
|
||||||
|
|
||||||
@Column(nullable = false)
|
@Column(nullable = false, columnDefinition = "TINYINT(1)")
|
||||||
private boolean isResolved = false;
|
private boolean isResolved = false;
|
||||||
|
|
||||||
@Column(length = 16)
|
@Column(length = 16)
|
||||||
|
|||||||
@ -23,7 +23,7 @@ public class LogWebhookEntity {
|
|||||||
@Column(nullable = false)
|
@Column(nullable = false)
|
||||||
private int cooldownSec = 3600;
|
private int cooldownSec = 3600;
|
||||||
|
|
||||||
@Column(nullable = false)
|
@Column(nullable = false, columnDefinition = "TINYINT(1)")
|
||||||
private boolean enabled = true;
|
private boolean enabled = true;
|
||||||
|
|
||||||
@Column(nullable = false)
|
@Column(nullable = false)
|
||||||
|
|||||||
正在加载...
在新工单中引用
屏蔽一个用户