mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-09 09:42:28 +08: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;
|