NOTICK Fix schema validation error for flow parameters (#6304)

Adding 'corda-blob' type, fixed 'Schema-validation: wrong column type'
This commit is contained in:
Kyriakos Tharrouniatis 2020-06-02 17:52:50 +01:00 committed by GitHub
parent 0554c98d18
commit b8b462f68e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -206,6 +206,7 @@ class DBCheckpointStorage(
@Column(name = "started_type", nullable = false)
var startType: StartReason,
@Type(type = "corda-blob")
@Column(name = "flow_parameters", nullable = false)
var initialParameters: ByteArray = EMPTY_BYTE_ARRAY,