Table core.shipping_package_shapes
Details on shipping package and other information assiciated with it.
# Column Name Nullable Data Type Max Length Description
1shipping_package_shape_idinteger0Primary key of the table.
2shipping_package_shape_codecharacter varying12Code given to the shipping package shape.
3shipping_package_shape_namecharacter varying64Name given to the shipping package shape, which is a unique field.
4is_rectangularboolean0Select "t" if the shape of the package is rectangular or vice-versa.
5audit_user_idinteger0Contains the id of the user who last inserted or updated the corresponding row.
6audit_tstimestamp with time zone0Contains the date and timestamp of the last insert or update action.

Foreign Keys

# Column Name Key Name References
5 audit_user_id shipping_package_shapes_audit_user_id_fkey office.users.user_id

Indices

Index Name Owner Access Method Definition Description
shipping_package_shapes_pkey postgres btree shipping_package_shape_id
shipping_package_shapes_shipping_package_shape_name_uix postgres btree upper(shipping_package_shape_name::text)
shipping_package_shapes_shipping_package_shape_code_uix postgres btree upper(shipping_package_shape_code::text)

Check Constraints

Constraint Name Description

Default Values

# Column Name Default
1 shipping_package_shape_id nextval('core.shipping_package_shapes_shipping_package_shape_id_seq'::regclass)
4 is_rectangular false
6 audit_ts now()

Triggers

Trigger Name Targets On Event Timing Condition Order Orientation Description