38 lines
813 B
JavaScript
Raw Normal View History

const Model = require('objection').Model
/**
* Locales model
*/
2019-02-09 19:10:34 -05:00
module.exports = class Locale extends Model {
static get tableName() { return 'locales' }
2018-09-08 15:49:36 -04:00
static get idColumn() { return 'code' }
static get jsonSchema () {
return {
type: 'object',
required: ['code', 'name'],
properties: {
code: {type: 'string'},
isRTL: {type: 'boolean', default: false},
name: {type: 'string'},
nativeName: {type: 'string'},
createdAt: {type: 'string'},
updatedAt: {type: 'string'}
}
}
}
2019-02-09 19:10:34 -05:00
static get jsonAttributes() {
return ['strings']
}
$beforeUpdate() {
this.updatedAt = new Date().toISOString()
}
$beforeInsert() {
this.createdAt = new Date().toISOString()
this.updatedAt = new Date().toISOString()
}
}