const bpfs = require('botpress-fs'); const tableNa...
# 🌎general
j
const bpfs = require('botpress-fs'); const tableName = 'PEDIDOTable'; bpfs.knex(tableName).where({ /* your condition here */ }).del().then(() => { console.log('Data deleted successfully'); }).catch(err => { console.error('Error deleting data: ', err); });