Files
cloudron-box/migrations/20240716214414-appPortBindings-make-count-not-null.js

10 lines
269 B
JavaScript
Raw Normal View History

'use strict';
exports.up = async function(db) {
await db.runSql('UPDATE appPortBindings SET count=1 WHERE count IS NULL');
await db.runSql('ALTER TABLE appPortBindings MODIFY count INTEGER NOT NULL DEFAULT 1');
};
exports.down = async function(/* db */) {
};