mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 01:23:57 +08:00
fill sync rows to fix sync issues
This commit is contained in:
parent
be378f71b0
commit
7e374e795b
2 changed files with 6 additions and 1 deletions
5
db/migrations/0132__fill_sync.js
Normal file
5
db/migrations/0132__fill_sync.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
const syncTableService = require('../../src/services/sync_table');
|
||||
|
||||
module.exports = async () => {
|
||||
await syncTableService.fillAllSyncRows();
|
||||
};
|
|
@ -4,7 +4,7 @@ const build = require('./build');
|
|||
const packageJson = require('../../package');
|
||||
const {TRILIUM_DATA_DIR} = require('./data_dir');
|
||||
|
||||
const APP_DB_VERSION = 131;
|
||||
const APP_DB_VERSION = 132;
|
||||
const SYNC_VERSION = 8;
|
||||
|
||||
module.exports = {
|
||||
|
|
Loading…
Reference in a new issue