Initial Commit of Gjallarhorn: A Heimdall Analytics Tool

This commit is contained in:
Kenneth Endfinger
2021-12-26 03:33:23 -05:00
parent cbbefc94a2
commit ff665c27f5
13 changed files with 257 additions and 6 deletions

View File

@ -0,0 +1,17 @@
package cloud.kubelet.foundation.heimdall.view
import org.jetbrains.exposed.sql.Table
import org.jetbrains.exposed.sql.javatime.timestamp
object BlockChangeView : Table("block_changes") {
val isBreak = bool("break")
val time = timestamp("time")
val player = uuid("player")
val world = uuid("world")
val x = double("x")
val y = double("y")
val z = double("z")
val pitch = double("pitch")
val yaw = double("yaw")
val block = text("block")
}