phronCare/PhLSM_StockItemIdList.sql
leandro 6d0a72c01d
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 20m38s
feat(expeditions): prevent reuse of stockitem_id in active expeditions
Closes #5
2026-03-11 23:35:51 -03:00

5 lines
84 B
Transact-SQL

CREATE TYPE dbo.PhLSM_StockItemIdList AS TABLE
(
stockitem_id INT NOT NULL
);
GO