Modification to Credits not Received.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
@@ -0,0 +1,2 @@
|
||||
alter table "public"."parts_order_lines" add column "cm_received" boolean
|
||||
null;
|
||||
@@ -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);
|
||||
3
hasura/migrations/1650565856092_run_sql_migration/up.sql
Normal file
3
hasura/migrations/1650565856092_run_sql_migration/up.sql
Normal 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);
|
||||
Reference in New Issue
Block a user