module.exports = { tableName: 'account_roles', attributes: { account_id: 'integer', name: 'string', description: 'text', deleted: 'boolean', users: { collection: 'user', via: 'accountRoles', through: 'accountroleuser' } } };