mnml/ops/migrations/20191031203812_remove-molecular.js
2019-10-31 20:43:09 +11:00

10 lines
221 B
JavaScript

const uuidv4 = require('uuid/v4');
// give everybody the shapes mtx
exports.up = async knex => {
await knex.raw(`
DELETE from mtx
WHERE variant = 'Molecular';
`);
};
exports.down = async () => {};