Type : transactions.opening_stock_type

Schema transactions
Type Name opening_stock_type
Base Type -
Owner postgres
Collation
Default
Type Composite Type
Store Type Compressed Inline/Seconary
Not Null False
Description
Type Definition:
CREATE TYPE transactions.opening_stock_type AS
(
    store_name character varying(54),
    item_code character varying(16),
    quantity integer_strict,
    unit_name character varying(54),
    amount money_strict
);