mirror of
https://github.com/zadam/trilium.git
synced 2025-11-06 13:26:01 +01:00
10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
const Entity = require('./entity');
|
||
|
|
|
||
|
|
class RecentNote extends Entity {
|
||
|
|
static get tableName() { return "recent_notes"; }
|
||
|
|
static get primaryKeyName() { return "branchId"; }
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = RecentNote;
|