9
0
mirror of https://github.com/Auxilor/EcoSkills.git synced 2026-01-02 22:02:19 +00:00

Doubled varchar size

This commit is contained in:
Auxilor
2021-10-30 10:47:58 +01:00
parent 0511e6705e
commit cef24f9286

View File

@@ -79,7 +79,7 @@ class MySQLDataHandler(
object Players : UUIDTable("EcoSkills_Players") {
override val id: Column<EntityID<UUID>> = uuid("uuid")
.entityId()
val name = varchar("name", 50)
val name = varchar("name", 100)
.default("Unknown Player")
}
}