Skip to content

Commit f3b79cb

Browse files
Merge pull request #547 from OpenSignLabs/staging
refactor: remove extra comment
1 parent f95ea0b commit f3b79cb

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

apps/OpenSignServer/databases/migrations/20250424104819-change_permission.cjs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@ async function ensureSchema(Parse, className, setupFn) {
1010
try {
1111
// If class exists, update it
1212
await schema.update();
13-
console.log(`✅ Updated schema for ${className}`);
1413
} catch (e) {
1514
// Otherwise, create it
1615
await schema.save();
17-
console.log(`✅ Created schema for ${className}`);
1816
}
1917
}
2018

@@ -24,10 +22,7 @@ async function patchSchema(Parse, className, setupFn) {
2422
setupFn(schema);
2523
try {
2624
await schema.update();
27-
console.log(`🔄 Reverted schema for ${className}`);
28-
} catch (e) {
29-
console.warn(`⚠️ Skipping ${className} in down (not found)`);
30-
}
25+
} catch (e) {}
3126
}
3227

3328
exports.up = async Parse => {

0 commit comments

Comments
 (0)