Modification to Credits not Received.

This commit is contained in:
Patrick Fic
2022-04-21 11:45:41 -07:00
parent 51843f364b
commit 49818cc043
20 changed files with 511 additions and 26 deletions

View File

@@ -3839,6 +3839,7 @@
- act_price
- backordered_eta
- backordered_on
- cm_received
- cost
- created_at
- db_price
@@ -3859,6 +3860,7 @@
- act_price
- backordered_eta
- backordered_on
- cm_received
- cost
- created_at
- db_price
@@ -3890,6 +3892,7 @@
- act_price
- backordered_eta
- backordered_on
- cm_received
- cost
- created_at
- db_price

View File

@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."parts_order_lines" add column "cm_received" boolean
-- null;

View File

@@ -0,0 +1,2 @@
alter table "public"."parts_order_lines" add column "cm_received" boolean
null;

View File

@@ -0,0 +1,5 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- CREATE INDEX idx_pol_cm_received ON parts_order_lines(cm_received);
-- CREATE INDEX idx_pol_orderid ON parts_order_lines(orderid);
-- CREATE INDEX idx_parts_order_jobid ON parts_orders(jobid);

View File

@@ -0,0 +1,3 @@
CREATE INDEX idx_pol_cm_received ON parts_order_lines(cm_received);
CREATE INDEX idx_pol_orderid ON parts_order_lines(orderid);
CREATE INDEX idx_parts_order_jobid ON parts_orders(jobid);