Files
cloudron-box/migrations/20240625144843-apps-updateTime-remove-default.js

10 lines
278 B
JavaScript
Raw Normal View History

'use strict';
exports.up = async function(db) {
await db.runSql('ALTER TABLE apps MODIFY updateTime TIMESTAMP NULL DEFAULT NULL');
await db.runSql('UPDATE apps SET updateTime=? WHERE creationTime=updateTime', [ null ]);
};
exports.down = async function(/* db */) {
};