ghost
Version:
The professional publishing platform
5 lines (3 loc) • 314 B
JavaScript
const {createDropNullableMigration} = require('../../utils');
// We need to disable foreign key checks because if MySQL is missing the STRICT_TRANS_TABLES mode, we cannot drop nullable from a foreign key
module.exports = createDropNullableMigration('comment_likes', 'member_id', {disableForeignKeyChecks: true});