Compare commits
No commits in common. "master" and "v0.1" have entirely different histories.
@ -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")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
}
|
@ -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())
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user