UNPKG

ghost

Version:

The professional publishing platform

12 lines (9 loc) 296 B
const {createAddColumnMigration} = require('../../utils'); module.exports = createAddColumnMigration('products', 'visible', { type: 'boolean', nullable: false, defaultTo: false }); module.exports.up = async () => { // noop - column will be replaced with `visibility` instead };