remove molecular mtx

This commit is contained in:
ntr
2019-10-31 20:43:09 +11:00
parent bfecea9a4e
commit ef5e5170cf
6 changed files with 12 additions and 243 deletions
@@ -0,0 +1,10 @@
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 () => {};