Pierre Noël 025eed964c dont run d&p migration at CT creation + rebuild tables if there were deleted in DB
Signed-off-by: Pierre Noël <petersg83@gmail.com>
2020-10-16 18:54:09 +02:00

15 lines
324 B
JavaScript

'use strict';
const isPolymorphic = ({ assoc }) => {
return assoc.nature.toLowerCase().indexOf('morph') !== -1;
};
const getManyRelations = definition => {
return definition.associations.filter(({ nature }) => ['manyToMany', 'manyWay'].includes(nature));
};
module.exports = {
isPolymorphic,
getManyRelations,
};