Files
BE_IBL/sql/manual_changes/2026-05-24-add-nat-subsubgroup-sequence-column.sql
sas.fajri 81b699db01 Add PDF validation in email script; add Nat_SubSubGroupSequence column
- Skip attachment if downloaded content is not a valid PDF (HTML error response)
- Add Nat_SubSubGroupSequence to nat_subsubgroup table (missing column
  referenced by sp_rpt_hasil_lab in SELECT and ORDER BY)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-24 21:37:50 +07:00

6 lines
270 B
SQL

-- Add missing Nat_SubSubGroupSequence column to nat_subsubgroup
-- Required by sp_rpt_hasil_lab which references this column in SELECT and ORDER BY
ALTER TABLE nat_subsubgroup
ADD COLUMN Nat_SubSubGroupSequence char(2) NOT NULL DEFAULT '' AFTER Nat_SubSubGroupCode;