mirror of
https://github.com/zadam/trilium.git
synced 2024-11-15 12:17:01 +08:00
19 lines
418 B
JavaScript
19 lines
418 B
JavaScript
|
"use strict";
|
||
|
|
||
|
const Entity = require('./entity');
|
||
|
const utils = require('../services/utils');
|
||
|
|
||
|
class Image extends Entity {
|
||
|
static get tableName() { return "images"; }
|
||
|
static get primaryKeyName() { return "imageId"; }
|
||
|
|
||
|
beforeSaving() {
|
||
|
if (!this.dateCreated) {
|
||
|
this.dateCreated = utils.nowDate();
|
||
|
}
|
||
|
|
||
|
this.dateModified = utils.nowDate();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Image;
|