diff --git a/.changeset/tender-cups-play.md b/.changeset/tender-cups-play.md new file mode 100644 index 0000000000..a8c1bed142 --- /dev/null +++ b/.changeset/tender-cups-play.md @@ -0,0 +1,5 @@ +--- +"@medusajs/medusa": patch +--- + +Fix duplicated migration - AddTimestempsToProductShippingProfiles1692870898425 diff --git a/packages/medusa/src/migrations/1692870898425-add-timestemps-to-product-shipping-profiles.ts b/packages/medusa/src/migrations/1692870898425-add-timestemps-to-product-shipping-profiles.ts index 2d0eb81294..1b077305d2 100644 --- a/packages/medusa/src/migrations/1692870898425-add-timestemps-to-product-shipping-profiles.ts +++ b/packages/medusa/src/migrations/1692870898425-add-timestemps-to-product-shipping-profiles.ts @@ -3,7 +3,9 @@ import IsolateProductDomain from "../loaders/feature-flags/isolate-product-domai export const featureFlag = IsolateProductDomain.key -export class LineItemProductId1692870898424 implements MigrationInterface { +export class AddTimestempsToProductShippingProfiles1692870898425 + implements MigrationInterface +{ public async up(queryRunner: QueryRunner): Promise { await queryRunner.query(` ALTER TABLE "product_shipping_profile" ADD COLUMN IF NOT EXISTS "created_at" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now();