Hey guys, is there any way i can modify EthNFTOwners table? i need to add some more columns for our project, but im always getting “Error: Permission denied for action update on class EthNFTOwners.” error. I’m using the masterkey, but no luck. This is what im trying from the JS Console on Dashboard:
const query = new Parse.Query('EthNFTOwners');
query.descending('createdAt');
const results = await query.first();
console.log(results);
results.set("Title", "prueba2");
console.log(results);
results.save({useMasterKey:true});