Files
pcpuma_acatlan_api/server/controller/Infraccion/get.js
T

8 lines
210 B
JavaScript
Raw Normal View History

const { Op } = require('sequelize');
2022-02-01 06:44:34 -06:00
const Infraccion = require('../../db/tablas/Infraccion');
2021-09-02 08:21:35 -05:00
const get = async () =>
Infraccion.findAll({ where: { idInfraccion: { [Op.ne]: 1 } } });
2021-09-02 08:21:35 -05:00
module.exports = get;