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