Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | 480x 2x 1x 1x 1x 1x 1x 1x 1x | import db from './index'; const { I18n } = db; async function findI18n(query, opts = {}) { return I18n.findOne({ where: query, ...opts, }); } async function findI18ns(query, opts = {}) { return I18n.findAll({ where: query, ...opts, }); } async function findAndCountI18ns(query, opts = {}) { return I18n.findAndCountAll({ where: query, ...opts, }); } async function createI18ns(i18ns, opts = {}) { return I18n.bulkCreate(i18ns, opts); } async function createI18n(i18n) { return I18n.create(i18n); } async function updateI18n(query, queryUpd, opts = {}) { return I18n.update(queryUpd, { where: query, ...opts, }); } async function deleteI18n(query, opts = {}) { return I18n.destroy({ where: query, ...opts, }); } async function getLastDateUpdatedI18n() { return I18n.max('updatedAt'); } export default { findI18n, findI18ns, findAndCountI18ns, createI18n, createI18ns, updateI18n, deleteI18n, getLastDateUpdatedI18n, }; |