006_order_pricing_snapshot.sql 284 B

12345
  1. -- Migration 006: Order Pricing Snapshot Columns
  2. -- Adding columns to store pricing parameters at the moment of order creation.
  3. ALTER TABLE `orders` ADD COLUMN `printer_hour_price` decimal(10,2) DEFAULT NULL;
  4. ALTER TABLE `orders` ADD COLUMN `speed_coeff` decimal(10,2) DEFAULT NULL;