mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 20:06:08 +01:00
added migration to fix notePosition to always step in 10 increments
This commit is contained in:
14
db/migrations/0170__fix_branch_ordering.js
Normal file
14
db/migrations/0170__fix_branch_ordering.js
Normal file
@@ -0,0 +1,14 @@
|
||||
const repository = require('../../src/services/repository');
|
||||
const sql = require('../../src/services/sql');
|
||||
|
||||
module.exports = () => {
|
||||
for (const note of repository.getEntities("SELECT * FROM notes")) {
|
||||
let position = 0;
|
||||
|
||||
for (const branch of note.getChildBranches()) {
|
||||
sql.execute(`UPDATE branches SET notePosition = ? WHERE branchId = ?`, [position, branch.branchId]);
|
||||
|
||||
position += 10;
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user