|
|
|
|
@ -94,6 +94,7 @@ async function anonymize() {
|
|
|
|
|
driver: sqlite3.Database
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await db.run("UPDATE api_tokens SET token = 'API token value'");
|
|
|
|
|
await db.run("UPDATE notes SET title = 'title'");
|
|
|
|
|
await db.run("UPDATE note_contents SET content = 'text'");
|
|
|
|
|
await db.run("UPDATE note_revisions SET title = 'title'");
|
|
|
|
|
@ -102,8 +103,8 @@ async function anonymize() {
|
|
|
|
|
await db.run("UPDATE attributes SET name = 'name' WHERE type = 'relation' AND name != 'template'");
|
|
|
|
|
await db.run("UPDATE branches SET prefix = 'prefix' WHERE prefix IS NOT NULL");
|
|
|
|
|
await db.run(`UPDATE options SET value = 'anonymized' WHERE name IN
|
|
|
|
|
('documentSecret', 'encryptedDataKey', 'passwordVerificationHash',
|
|
|
|
|
'passwordVerificationSalt', 'passwordDerivedKeySalt')`);
|
|
|
|
|
('documentId', 'documentSecret', 'encryptedDataKey', 'passwordVerificationHash',
|
|
|
|
|
'passwordVerificationSalt', 'passwordDerivedKeySalt', 'username', 'syncServerHost', 'syncProxy')`);
|
|
|
|
|
await db.run("VACUUM");
|
|
|
|
|
|
|
|
|
|
await db.close();
|
|
|
|
|
|