Files
cloudron-box/migrations/20240629074953-apps-notes-null-to-emptystring.js

9 lines
167 B
JavaScript
Raw Normal View History

'use strict';
exports.up = async function(db) {
await db.runSql('UPDATE apps SET notes="" WHERE notes IS NULL');
};
exports.down = async function(/* db */) {
};