For some strange reason in so very configurable OroCommerce there is no ability to manage product units and the only few words doc says that its possible to add units via web api. I need to add "days" units and best if do it in code via migration. Is it enough just to make migration like
INSERT INTO `oro_product_unit` (`code`, `default_precision`) VALUES ('day', '0');
and add tranlation messages like
oro.product_unit.day.label.full: day
oro.product.product_unit.day.label.full: day
or need to do smth else?