diff --git a/src/commonMain/kotlin/ru/landgrafhomyak/db/raw_sql_skeleton/Column.kt b/src/commonMain/kotlin/ru/landgrafhomyak/db/raw_sql_skeleton/Column.kt index 1fe925a..9b154c2 100644 --- a/src/commonMain/kotlin/ru/landgrafhomyak/db/raw_sql_skeleton/Column.kt +++ b/src/commonMain/kotlin/ru/landgrafhomyak/db/raw_sql_skeleton/Column.kt @@ -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 } \ No newline at end of file