Commit 1814adf3 by chamberone

fix: 为空问题修复

1 parent 3ed67bfb
......@@ -32,10 +32,10 @@ public class MapBlockInfoEntity {
@Column(name = "area")
private Long area;
@Column(name = "area_data", nullable = false, columnDefinition = "json")
@Column(name = "area_data", nullable = true, columnDefinition = "json")
private String areaData;
@Column(nullable = false)
@Column(nullable = true)
private Boolean kind;
@Column(name = "team_id", length = 50, nullable = false)
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!