blob

fun blob(name: String, useObjectIdentifier: Boolean = false): Column<ExposedBlob>

Creates a binary column, with the specified name, for storing BLOBs. If useObjectIdentifier is true, then the column will use the OID type on PostgreSQL for storing large binary objects. The parameter must not be true for other databases.

Samples

org.jetbrains.exposed.sql.tests.shared.types.BlobColumnTypeTests.testBlob