[CORDA-1085] Alter column names to be consistent with R3.Corda. (#2606)

Alter column names to be consistent with R3.Corda - related to CORDA-990.
This commit is contained in:
szymonsztuka 2018-03-07 13:28:49 +00:00 committed by GitHub
parent 4e5df2f4fb
commit 0d5f033aae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,10 +29,10 @@ class NodePropertiesPersistentStore(readPhysicalNodeId: () -> String, persistenc
@Table(name = "${NODE_DATABASE_PREFIX}properties")
class DBNodeProperty(
@Id
@Column(name = "key")
@Column(name = "property_key")
val key: String = "",
@Column(name = "value")
@Column(name = "property_value")
var value: String? = ""
)
}