mirror of
https://github.com/GayPizzaSpecifications/foundation.git
synced 2025-09-30 13:51:31 +00:00
13 lines
342 B
Kotlin
13 lines
342 B
Kotlin
package gay.pizza.foundation.heimdall.table
|
|
|
|
import org.jetbrains.exposed.sql.Table
|
|
import org.jetbrains.exposed.sql.javatime.timestamp
|
|
|
|
object PlayerSessionTable : Table("player_sessions") {
|
|
val id = uuid("id")
|
|
val player = uuid("player")
|
|
val name = text("name")
|
|
val startTime = timestamp("start")
|
|
val endTime = timestamp("end")
|
|
}
|