LeagueStats/server/app/Models/Traits/NoTimestamp.js

17 lines
252 B
JavaScript
Raw Normal View History

'use strict'
class NoTimestamp {
register (Model) {
Object.defineProperties(Model, {
createdAtColumn: {
get: () => null,
},
updatedAtColumn: {
get: () => null,
}
})
}
}
module.exports = NoTimestamp