updated README

This commit is contained in:
daniel31x13
2023-11-07 17:55:11 -05:00
parent a2f03ff468
commit dba62d7028
2 changed files with 12 additions and 11 deletions
+6 -6
View File
@@ -71,9 +71,9 @@ async function migrateToV2() {
where: { id: user.id },
data: { image: path },
});
console.log(`Updated avatar for avatar ${user.id}`);
console.log(`${user.id}`);
} else {
console.log(`No avatar found for avatar ${user.id}`);
console.log(`${user.id}`);
}
}
@@ -90,9 +90,9 @@ async function migrateToV2() {
where: { id: link.id },
data: { pdfPath: path },
});
console.log(`Updated capture for pdf ${link.id}`);
console.log(`${link.id}`);
} else {
console.log(`No capture found for pdf ${link.id}`);
console.log(`${link.id}`);
}
}
@@ -107,9 +107,9 @@ async function migrateToV2() {
where: { id: link.id },
data: { screenshotPath: path },
});
console.log(`Updated capture for screenshot ${link.id}`);
console.log(`${link.id}`);
} else {
console.log(`No capture found for screenshot ${link.id}`);
console.log(`${link.id}`);
}
}