feat(F-086): completed feature

This commit is contained in:
chattie
2026-08-20 06:13:37 +02:00
parent 7ece045e13
commit 822bc7546c
16 changed files with 201 additions and 27 deletions

View File

@@ -0,0 +1,11 @@
'use strict';
exports.up = async (pgm) => {
pgm.addColumn('catalog_products', {
expiration_date: { type: 'date', notNull: false },
});
};
exports.down = async (pgm) => {
pgm.dropColumn('catalog_products', 'expiration_date');
};