minus

open infix operator fun <T> ExpressionWithColumnType<T>.minus(t: T): MinusOp<T, T>

Deprecated (with error)

This interface method will be removed following release 1.0.0 and should be replaced with the equivalent top-level function.

Replace with

import org.jetbrains.exposed.v1.core.minus
this - t

open infix operator fun <T, S : T> ExpressionWithColumnType<T>.minus(other: Expression<S>): MinusOp<T, S>

Deprecated (with error)

This interface method will be removed following release 1.0.0 and should be replaced with the equivalent top-level function.

Replace with

import org.jetbrains.exposed.v1.core.minus
this - other