updated README
This commit is contained in:
@@ -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}`);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user