Skip to content

Commit c5753c0

Browse files
author
Thomasr
committed
fix build issue after merging
1 parent daa876c commit c5753c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/api-service/lowcoder-server/src/main/java/org/lowcoder/runner/migrations/DatabaseChangelog.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public void fillCreateAt(MongockTemplate mongoTemplate) {
257257
@Override
258258
public void processDocument(Document document) {
259259
Object object = document.get("createdAt");
260-
if(object != null) return;
260+
if (object != null) return;
261261
// Create an update object to add the 'gid' field
262262
Update update = new Update();
263263
update.set("createdAt", Instant.now());
@@ -269,6 +269,7 @@ public void processDocument(Document document) {
269269
mongoTemplate.updateFirst(idQuery, update, "folder");
270270
}
271271
});
272+
}
272273

273274
@ChangeSet(order = "025", id = "add-gid-indexes-unique", author = "")
274275
public void addGidIndexesUnique(MongockTemplate mongoTemplate) {

0 commit comments

Comments
 (0)