Skip to content
This repository was archived by the owner on Dec 10, 2025. It is now read-only.

Commit d002a8f

Browse files
authored
Update CloudPlayerTables.kt
1 parent 57085be commit d002a8f

File tree

1 file changed

+2
-2
lines changed
  • surf-cloud-standalone/src/main/kotlin/dev/slne/surf/cloud/standalone/player/db/exposed

1 file changed

+2
-2
lines changed

surf-cloud-standalone/src/main/kotlin/dev/slne/surf/cloud/standalone/player/db/exposed/CloudPlayerTables.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import dev.slne.surf.cloud.api.server.exposed.table.AuditableLongIdTable
77
import org.jetbrains.exposed.sql.ReferenceOption
88
import java.net.Inet4Address
99

10-
object CloudPlayerTable : AuditableLongIdTable("cloud_player") {
10+
object CloudPlayerTable : AuditableLongIdTable("cloud_players") {
1111
val uuid = nativeUuid("uuid").uniqueIndex()
1212
val lastServer = char("last_server", 255).nullable()
1313
val lastSeen = zonedDateTime("last_seen").nullable()
@@ -19,7 +19,7 @@ object CloudPlayerTable : AuditableLongIdTable("cloud_player") {
1919
.nullable()
2020
}
2121

22-
object CloudPlayerNameHistoryTable : AuditableLongIdTable("cloud_player_name_history") {
22+
object CloudPlayerNameHistoryTable : AuditableLongIdTable("cloud_player_name_histories") {
2323
val name = char("name", 16)
2424
val player = reference(
2525
"cloud_player_id",

0 commit comments

Comments
 (0)