ready to test

Testing

Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
This commit is contained in:
2026-06-22 10:06:58 +08:00
parent bf48c95467
commit 439bb33f77
189 changed files with 17559 additions and 686 deletions
@@ -0,0 +1,14 @@
'use strict';
module.exports = {
up: async (queryInterface, Sequelize) => {
await queryInterface.addColumn('assets', 'thumbnail_storage_key', {
type: Sequelize.STRING(512),
allowNull: true,
after: 'thumbnail_url',
});
},
down: async (queryInterface) => {
await queryInterface.removeColumn('assets', 'thumbnail_storage_key');
},
};