Skip to content
This repository was archived by the owner on Sep 20, 2025. It is now read-only.

Commit db8a9f0

Browse files
committed
Fix down function in migration for adding product.isLive field
1 parent bc45944 commit db8a9f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/migrations/v1/20250824143710-alter-products-table-add-live-column.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = {
2727
try {
2828
await queryInterface.removeColumn(
2929
"products",
30-
"live",
30+
"isLive",
3131
{ transaction },
3232
);
3333
await transaction.commit();

0 commit comments

Comments
 (0)