mirror of
https://github.com/zadam/trilium.git
synced 2025-11-08 14:25:51 +01:00
added hash columns for faster sync check calculation
This commit is contained in:
11
src/entities/option.js
Normal file
11
src/entities/option.js
Normal file
@@ -0,0 +1,11 @@
|
||||
"use strict";
|
||||
|
||||
const Entity = require('./entity');
|
||||
|
||||
class Option extends Entity {
|
||||
static get tableName() { return "options"; }
|
||||
static get primaryKeyName() { return "name"; }
|
||||
static get syncedProperties() { return ["name", "value"]; }
|
||||
}
|
||||
|
||||
module.exports = Option;
|
||||
Reference in New Issue
Block a user