mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 03:16:11 +01:00
refactored "sync" table to "entity_changes"
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
const syncTableService = require('../../src/services/sync_table');
|
||||
const syncTableService = require('../../src/services/entity_changes.js');
|
||||
|
||||
// options has not been filled so far which caused problems with clean-slate sync.
|
||||
module.exports = async () => await syncTableService.fillAllSyncRows();
|
||||
module.exports = async () => await syncTableService.fillAllSyncRows();
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
const syncTableService = require('../../src/services/sync_table');
|
||||
const syncTableService = require('../../src/services/entity_changes.js');
|
||||
|
||||
module.exports = async () => {
|
||||
await syncTableService.fillAllSyncRows();
|
||||
};
|
||||
};
|
||||
|
||||
1
db/migrations/0163__rename_sync_to_entity_changes.sql
Normal file
1
db/migrations/0163__rename_sync_to_entity_changes.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE sync RENAME TO entity_changes;
|
||||
Reference in New Issue
Block a user