Files
lti-api/internal/database/migrations/20260308113033_enable_fifo_v2_chickin_out.down.sql
T

13 lines
230 B
PL/PgSQL

BEGIN;
UPDATE fifo_stock_v2_route_rules
SET
is_active = FALSE,
updated_at = NOW()
WHERE flag_group_code = 'AYAM'
AND lane = 'USABLE'
AND function_code = 'CHICKIN_OUT'
AND source_table = 'project_chickins';
COMMIT;