🐛 修复 OneDrive 某些情况下 Access Token 过长, 因超出数据库长度无法保存的 BUG.

This commit is contained in:
zhaojun1998
2020-05-04 20:59:48 +08:00
parent 3720dc6aa9
commit 1d29395191

View File

@@ -8,6 +8,7 @@ import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Lob;
/**
* @author zhaojun
@@ -27,7 +28,7 @@ public class StorageConfig {
private String title;
@Column(length = 4000)
@Lob
private String value;
private Integer driveId;