Fix column's .toString()
This commit is contained in:
parent
aa563fa7e7
commit
e97e198f75
@ -8,5 +8,8 @@ public class Column(
|
|||||||
) {
|
) {
|
||||||
public constructor(table: Table, name: String, type: String) : this(table, name, type, type)
|
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
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user