mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 20:51:25 +03:00
добавлены схемы sql таблиц
This commit is contained in:
parent
bafaa95c31
commit
85d7d08588
2 changed files with 2 additions and 2 deletions
|
@ -6,6 +6,6 @@ import org.jetbrains.exposed.sql.stringParam
|
||||||
object Crypto : Table() {
|
object Crypto : Table() {
|
||||||
val fromCurrecny = stringParam("fromCurrecny")
|
val fromCurrecny = stringParam("fromCurrecny")
|
||||||
val convCurrency = stringParam("convCurrency")
|
val convCurrency = stringParam("convCurrency")
|
||||||
val rate = integer("rate")
|
val rate = float("rate")
|
||||||
val date = long("date")
|
val date = long("date")
|
||||||
}
|
}
|
|
@ -6,6 +6,6 @@ import org.jetbrains.exposed.sql.stringParam
|
||||||
object Fiat : Table() {
|
object Fiat : Table() {
|
||||||
val fromCurrecny = stringParam("fromCurrecny")
|
val fromCurrecny = stringParam("fromCurrecny")
|
||||||
val convCurrency = stringParam("convCurrency")
|
val convCurrency = stringParam("convCurrency")
|
||||||
val rate = integer("rate")
|
val rate = float("rate")
|
||||||
val date = long("date")
|
val date = long("date")
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue