Consistent database columns naming convention. (#2097)

This commit is contained in:
szymonsztuka
2017-11-21 09:57:38 +00:00
committed by GitHub
parent c467a056ae
commit ad9f335dde

View File

@ -75,10 +75,10 @@ class RaftUniquenessProvider(private val transportConfiguration: NodeSSLConfigur
var key: String = "",
@Lob
@Column
@Column(name = "state_value")
var value: ByteArray = ByteArray(0),
@Column
@Column(name = "state_index")
var index: Long = 0
)