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