mirror of
https://github.com/zadam/trilium.git
synced 2025-01-01 12:52:17 +08:00
VACUUM for migration
This commit is contained in:
parent
61ddd8afc6
commit
60d000b9cb
4 changed files with 32 additions and 23 deletions
|
@ -1,2 +1,2 @@
|
|||
UPDATE options SET name = 'eraseEntitiesAfterTimeInSeconds' WHERE name = 'eraseNotesAfterTimeInSeconds';
|
||||
UPDATE entity_changes SET entityName = 'eraseEntitiesAfterTimeInSeconds' WHERE entityName = 'eraseNotesAfterTimeInSeconds';
|
||||
UPDATE entity_changes SET entityId = 'eraseEntitiesAfterTimeInSeconds' WHERE entityName = 'options' AND entityId = 'eraseNotesAfterTimeInSeconds';
|
||||
|
|
1
db/migrations/0179__VACUUM.sql
Normal file
1
db/migrations/0179__VACUUM.sql
Normal file
|
@ -0,0 +1 @@
|
|||
VACUUM
|
|
@ -4,7 +4,7 @@ const build = require('./build');
|
|||
const packageJson = require('../../package');
|
||||
const {TRILIUM_DATA_DIR} = require('./data_dir');
|
||||
|
||||
const APP_DB_VERSION = 178;
|
||||
const APP_DB_VERSION = 179;
|
||||
const SYNC_VERSION = 19;
|
||||
const CLIPPER_PROTOCOL_VERSION = "1.0";
|
||||
|
||||
|
|
|
@ -7,6 +7,28 @@ const utils = require('./utils');
|
|||
const resourceDir = require('./resource_dir');
|
||||
const appInfo = require('./app_info');
|
||||
|
||||
function executeMigration(mig) {
|
||||
sql.transactional(() => {
|
||||
if (mig.type === 'sql') {
|
||||
const migrationSql = fs.readFileSync(resourceDir.MIGRATIONS_DIR + "/" + mig.file).toString('utf8');
|
||||
|
||||
console.log("Migration with SQL script: " + migrationSql);
|
||||
|
||||
sql.executeScript(migrationSql);
|
||||
} else if (mig.type === 'js') {
|
||||
console.log("Migration with JS module");
|
||||
|
||||
const migrationModule = require(resourceDir.MIGRATIONS_DIR + "/" + mig.file);
|
||||
migrationModule();
|
||||
} else {
|
||||
throw new Error("Unknown migration type " + mig.type);
|
||||
}
|
||||
|
||||
// not using repository because of changed utcDateModified column in migration 129
|
||||
sql.execute(`UPDATE options SET value = ? WHERE name = ?`, [mig.dbVersion.toString(), "dbVersion"]);
|
||||
});
|
||||
}
|
||||
|
||||
async function migrate() {
|
||||
const migrations = [];
|
||||
|
||||
|
@ -43,27 +65,13 @@ async function migrate() {
|
|||
try {
|
||||
log.info("Attempting migration to version " + mig.dbVersion);
|
||||
|
||||
sql.transactional(() => {
|
||||
if (mig.type === 'sql') {
|
||||
const migrationSql = fs.readFileSync(resourceDir.MIGRATIONS_DIR + "/" + mig.file).toString('utf8');
|
||||
|
||||
console.log("Migration with SQL script: " + migrationSql);
|
||||
|
||||
sql.executeScript(migrationSql);
|
||||
}
|
||||
else if (mig.type === 'js') {
|
||||
console.log("Migration with JS module");
|
||||
|
||||
const migrationModule = require(resourceDir.MIGRATIONS_DIR + "/" + mig.file);
|
||||
migrationModule();
|
||||
}
|
||||
else {
|
||||
throw new Error("Unknown migration type " + mig.type);
|
||||
}
|
||||
|
||||
// not using repository because of changed utcDateModified column in migration 129
|
||||
sql.execute(`UPDATE options SET value = ? WHERE name = ?`, [mig.dbVersion.toString(), "dbVersion"]);
|
||||
});
|
||||
if (mig.name === 'VACUUM') {
|
||||
// special case since VACUUM can't be executed in a transaction
|
||||
sql.execute('VACUUM');
|
||||
}
|
||||
else {
|
||||
executeMigration(mig);
|
||||
}
|
||||
|
||||
log.info("Migration to version " + mig.dbVersion + " has been successful.");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue