Skip to content

Instantly share code, notes, and snippets.

View jnfeinstein's full-sized avatar

Joel Feinstein jnfeinstein

View GitHub Profile
@jnfeinstein
jnfeinstein / JsonbColumn.kt
Created April 2, 2021 02:18
JetBrains/Exposed support for PostgreSQL jsonb column type
import org.jetbrains.exposed.sql.*
import org.jetbrains.exposed.sql.Function
import org.jetbrains.exposed.sql.statements.api.PreparedStatementApi
import org.postgresql.util.PGobject
import java.util.UUID
private const val JSONB = "JSONB"
/**
* @see <a href="https://github.com/JetBrains/Exposed/issues/127#issuecomment-624222176">GitHub</a>