trilium/src/entities/branch.js

10 lines
214 B
JavaScript
Raw Normal View History

2018-03-25 09:39:15 +08:00
"use strict";
const Entity = require('./entity');
class Branch extends Entity {
static get tableName() { return "branches"; }
static get primaryKeyName() { return "branchId"; }
}
module.exports = Branch;