Compare commits

..

No commits in common. "master" and "v0.1" have entirely different histories.
master ... v0.1

3 changed files with 9 additions and 9 deletions
build.gradle.kts
src/commonMain/kotlin/ru/landgrafhomyak/db/raw_sql_skeleton

View File

@ -14,7 +14,7 @@ buildscript {
}
group = "ru.landgrafhomyak.db"
version = "0.2"
version = "0.1"
repositories {
mavenCentral()
@ -34,6 +34,12 @@ xomrk {
dependencies {
}
}
jvmMain {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")
}
}
}
}

View File

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

View File

@ -37,9 +37,6 @@ public class Namespace(
}
public companion object {
@Deprecated("Root namespace isn't global object, so you need to create it again each time you use it", replaceWith = ReplaceWith("this.newRootNamespace()"))
public val ROOT: Namespace get() = this.newRootNamespace()
public fun newRootNamespace(): Namespace = Namespace("", arrayOf())
public val ROOT: Namespace = Namespace("", arrayOf())
}
}