@medusajs/order
Version:
Medusa Order module
14 lines • 665 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Migration20250702095353 = void 0;
const migrations_1 = require("@mikro-orm/migrations");
class Migration20250702095353 extends migrations_1.Migration {
async up() {
this.addSql(`alter table if exists "order_line_item_adjustment" add column if not exists "is_tax_inclusive" boolean not null default false;`);
}
async down() {
this.addSql(`alter table if exists "order_line_item_adjustment" drop column if exists "is_tax_inclusive";`);
}
}
exports.Migration20250702095353 = Migration20250702095353;
//# sourceMappingURL=Migration20250702095353.js.map
;