Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 36894 |
amit |
1 |
-- Adds approver tracking to HID allocation requests.
|
|
|
2 |
-- requested_allocation now represents an ADDITIONAL one-time qty (over and above current stock),
|
|
|
3 |
-- approved via the FOFO "Requested Allocations" edit screen; created_by = requestor, approved_by = approver.
|
|
|
4 |
ALTER TABLE fofo.requested_hid_allocation
|
|
|
5 |
ADD COLUMN approved_by VARCHAR(255) NULL AFTER updated_at;
|