UNPKG

screwdriver-data-schema

Version:
15 lines (12 loc) 409 B
'use strict'; const prefix = process.env.DATASTORE_SEQUELIZE_PREFIX || ''; const table = `${prefix}stages`; module.exports = { // eslint-disable-next-line no-unused-vars up: async (queryInterface, Sequelize) => { try { await queryInterface.removeConstraint(table, `${table}_pipeline_id_name_key`); // eslint-disable-next-line no-empty } catch (e) {} } };