UNPKG

ghost

Version:

The professional publishing platform

32 lines (28 loc) 1.12 kB
const logging = require('@tryghost/logging'); const {default: ObjectID} = require('bson-objectid'); const {createTransactionalMigration, meta} = require('../../utils'); module.exports = createTransactionalMigration( async function up(knex) { logging.info('Creating "Ghost Explore Integration" role'); const existingRole = await knex('roles').where({ name: 'Ghost Explore Integration' }).first(); if (existingRole) { logging.warn('"Ghost Explore Integration" role already exists, skipping'); return; } await knex('roles').insert({ id: (new ObjectID()).toHexString(), name: 'Ghost Explore Integration', description: 'Internal Integration for the Ghost Explore directory', created_by: meta.MIGRATION_USER, created_at: knex.raw('current_timestamp') }); }, async function down(knex) { logging.info('Deleting role "Ghost Explore Integration"'); await knex('roles').where({ name: 'Ghost Explore Integration' }).del(); } );