Set notes on existing apps to empty string if NULL

This commit is contained in:
Johannes Zellner
2024-06-29 09:52:30 +02:00
parent 082e659c7b
commit 4a33415b06
@@ -0,0 +1,8 @@
'use strict';
exports.up = async function(db) {
await db.runSql('UPDATE apps SET notes="" WHERE notes IS NULL');
};
exports.down = async function(/* db */) {
};