mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-31 20:22:27 +08:00
10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
![]() |
"use strict";
|
||
|
|
||
|
const Entity = require('./entity');
|
||
|
|
||
|
class Branch extends Entity {
|
||
|
static get tableName() { return "branches"; }
|
||
|
static get primaryKeyName() { return "branchId"; }
|
||
|
}
|
||
|
|
||
|
module.exports = Branch;
|