ghost
Version:
The professional publishing platform
17 lines (15 loc) • 391 B
JavaScript
const {combineTransactionalMigrations, addSetting} = require('../../utils');
module.exports = combineTransactionalMigrations(
addSetting({
key: 'explore_ping',
value: 'true',
type: 'boolean',
group: 'explore'
}),
addSetting({
key: 'explore_ping_growth',
value: 'false',
type: 'boolean',
group: 'explore'
})
);