Skip to content

Commit f15e40d

Browse files
authored
Merge pull request #17 from kmeinhar/schema-version-is-of-type-vint64
Bug: SchemaVersion is of type v_int64 (long long int) requires lld formatting
2 parents d49f59b + 2ac014b commit f15e40d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/db/UserDb.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class UserDb : public oatpp::orm::DbClient {
2323
migration.migrate(); // <-- run migrations. This guy will throw on error.
2424

2525
auto version = executor->getSchemaVersion();
26-
OATPP_LOGD("UserDb", "Migration - OK. Version=%d.", version);
26+
OATPP_LOGD("UserDb", "Migration - OK. Version=%lld.", version);
2727

2828
}
2929

0 commit comments

Comments
 (0)