Skip to content

Commit

Permalink
fix: fix wrong additional field in user dao
Browse files Browse the repository at this point in the history
  • Loading branch information
duruer committed Jun 18, 2024
1 parent 668e53b commit 4150d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/co/statu/rule/auth/db/impl/UserDaoImpl.kt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class UserDaoImpl : UserDao() {
`lastActivityTime` Int64 DEFAULT 0,
`lastPanelActivityTime` Int64 DEFAULT 0,
`active` Bool DEFAULT true,
`additionalFields` Bool DEFAULT '{}'
`additionalFields` String DEFAULT '{}'
) ENGINE = MergeTree() order by `registerDate`;
"""
)
Expand Down

0 comments on commit 4150d1d

Please sign in to comment.