We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d50c316 commit 8cbc6a9Copy full SHA for 8cbc6a9
src/main/kotlin/Main.kt
@@ -110,6 +110,7 @@ fun main() {
110
enabled = !winState.isMinimized,
111
onCloseRequest = {
112
exitApplication()
113
+ databaseOp.close()
114
}
115
) {
116
MaterialTheme(
src/main/kotlin/database/entity/BonusRecord.kt
@@ -37,7 +37,7 @@ object BonusRecords : BaseIntIdTable() {
37
/**
38
* 备注
39
*/
40
- val remark = varchar("remark", 500).clientDefault { "" }
+ val remark = varchar("remark", 500).default("")
41
42
43
class BonusRecord(id: EntityID<Int>) : BaseIntEntity(id, BonusRecords) {
0 commit comments