10 lines
221 B
JavaScript
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 () => {}; |