Skip to content

Commit

Permalink
feat: Increase map size limit, to 1Mb
Browse files Browse the repository at this point in the history
  • Loading branch information
phinner committed Dec 2, 2023
1 parent 13aa770 commit 2297af3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import org.jetbrains.exposed.sql.javatime.duration
import org.jetbrains.exposed.sql.javatime.timestamp

object MindustryMapTable : SnowflakeIdTable("mindustry_map") {
const val MAX_MAP_FILE_SIZE = 128 * 1024
const val MAX_MAP_FILE_SIZE = 1024 * 1024

val name = varchar("name", 64)
val description = text("description").nullable()
Expand Down

0 comments on commit 2297af3

Please sign in to comment.