package misc.migration.v1_1; import io.ebean.annotation.DbJson; import jakarta.persistence.Entity; import jakarta.persistence.Id; import jakarta.persistence.Table; import java.util.List; @Entity @Table(name = "migtest_e_test_json") public class ETestJson { @Id int id; @DbJson(length = 255) List json255; @DbJson(length = 256) List json256; @DbJson(length = 512) List json512; @DbJson(length = 1024) List json1k; @DbJson(length = 2 * 1024) List json2k; @DbJson(length = 4 * 1024) List json4k; @DbJson(length = 8 * 1024) List json8k; @DbJson(length = 16 * 1024) List json16k; @DbJson(length = 32 * 1024) List json32k; @DbJson(length = 64 * 1024) List json64k; @DbJson(length = 128 * 1024) List json128k; @DbJson(length = 256 * 1024) List json256k; @DbJson(length = 512 * 1024) List json512k; @DbJson(length = 1024 * 1024) List json1m; @DbJson(length = 2 * 1024 * 1024) List json2m; @DbJson(length = 4 * 1024 * 1024) List json4m; @DbJson(length = 8 * 1024 * 1024) List json8m; @DbJson(length = 16 * 1024 * 1024) List json16m; @DbJson(length = 32 * 1024 * 1024) List json32m; }