Fix column's .toString()

This commit is contained in:
Andrew Golovashevich 2025-04-01 01:48:58 +03:00
parent aa563fa7e7
commit e97e198f75

View File

@ -8,5 +8,8 @@ public class Column(
) {
public constructor(table: Table, name: String, type: String) : this(table, name, type, type)
override fun toString(): String = this.name
public val asSqlReference: String = "\"${this.name}\""
public val asSqlString: String = "\'${this.name}\'"
override fun toString(): String = this.asSqlReference
}