check migration functionality in staging app

This commit is contained in:
prafull-opensignlabs
2023-11-17 18:07:26 +05:30
parent 750e48ca2e
commit 4a3276f4e3
4 changed files with 16 additions and 31 deletions
@@ -32,18 +32,6 @@ exports.up = async Parse => {
});
return schema.update();
// const config = new Config(process.env.APP_ID, process.env.PARSE_MOUNT);
// const schema = await config.database.loadSchema();
// await schema.setPermissions('myclass', {
// get: { requiresAuthentication: true },
// find: { requiresAuthentication: true },
// count: { requiresAuthentication: true },
// create: { requiresAuthentication: true },
// update: { requiresAuthentication: true },
// delete: { requiresAuthentication: true },
// addField: {},
// });
};
/**