Fixed MySQLDataHandler

This commit is contained in:
Auxilor
2022-10-01 12:47:41 +01:00
parent 3e948beb7a
commit 6efd9e4fcd

View File

@@ -117,7 +117,10 @@ class MySQLDataHandler(
row
} else {
transaction {
table.insert { it[id] = uuid }
table.insert {
it[id] = uuid
it[dataColumn] = "{}"
}
}
table.select { table.id eq uuid }.limit(1).singleOrNull()
}