UNPKG

ghost

Version:

The professional publishing platform

15 lines (13 loc) 431 B
const {combineNonTransactionalMigrations, createAddColumnMigration} = require('../../utils'); module.exports = combineNonTransactionalMigrations( createAddColumnMigration('posts', 'codeinjection_head', { type: 'text', maxlength: 65535, nullable: true }), createAddColumnMigration('posts', 'codeinjection_foot', { type: 'text', maxlength: 65535, nullable: true }) );