Commit 1a203e26 authored by Mahmoud Aglan's avatar Mahmoud Aglan

fixede

parent ac32be3c
...@@ -3,7 +3,7 @@ declare(strict_types=1); ...@@ -3,7 +3,7 @@ declare(strict_types=1);
return [ return [
'up' => " 'up' => "
ALTER TABLE purchase_order_items ADD COLUMN expected_delivery_date DATE NULL AFTER quantity; ALTER TABLE purchase_order_items ADD COLUMN expected_delivery_date DATE NULL AFTER quantity_ordered;
ALTER TABLE purchase_order_items ADD COLUMN actual_delivery_date DATE NULL AFTER expected_delivery_date; ALTER TABLE purchase_order_items ADD COLUMN actual_delivery_date DATE NULL AFTER expected_delivery_date;
ALTER TABLE purchase_order_items ADD COLUMN qty_received DECIMAL(12,3) NOT NULL DEFAULT 0.000 AFTER actual_delivery_date; ALTER TABLE purchase_order_items ADD COLUMN qty_received DECIMAL(12,3) NOT NULL DEFAULT 0.000 AFTER actual_delivery_date;
ALTER TABLE purchase_order_items ADD COLUMN delivery_status ENUM('pending','partial','complete','overdue') NOT NULL DEFAULT 'pending' AFTER qty_received", ALTER TABLE purchase_order_items ADD COLUMN delivery_status ENUM('pending','partial','complete','overdue') NOT NULL DEFAULT 'pending' AFTER qty_received",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment