shillerben-adonis/app/Models/Traits/NoTimestamp.js

17 lines
253 B
JavaScript
Raw Normal View History

2023-08-21 00:15:16 +00:00
'use strict'
class NoTimestamp {
register (Model) {
Object.defineProperties(Model, {
createdAtColumn: {
get: () => null,
},
updatedAtColumn: {
get: () => null,
},
})
}
}
module.exports = NoTimestamp