VACUUM for migration

This commit is contained in:
zadam 2021-01-30 22:12:38 +01:00
parent 61ddd8afc6
commit 60d000b9cb
4 changed files with 32 additions and 23 deletions

View file

@ -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';

View file

@ -0,0 +1 @@
VACUUM

View file

@ -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";

View file

@ -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.");
}