UNPKG

ghost

Version:

The professional publishing platform

16 lines (14 loc) 437 B
const {combineNonTransactionalMigrations, createDropColumnMigration} = require('../../utils'); module.exports = combineNonTransactionalMigrations( createDropColumnMigration('members', 'password', { type: 'string', maxlength: 60, nullable: true }), createDropColumnMigration('members', 'name', { type: 'string', maxlength: 191, nullable: false, defaultTo: '' }) );