# Column Name Nullable Data Type Max Length Description
1store_type_idinteger0
2store_type_codecharacter varying12
3store_type_namecharacter varying50
4audit_user_idinteger0Contains the id of the user who last inserted or updated the corresponding row.
5audit_tstimestamp with time zone0Contains the date and timestamp of the last insert or update action.

Foreign Keys

# Column Name Key Name References
4 audit_user_id store_types_audit_user_id_fkey office.users.user_id

Indices

Index Name Owner Access Method Definition Description
store_types_pkey postgres btree store_type_id
store_types_name_uix postgres btree upper(store_type_name::text)
store_types_code_uix postgres btree upper(store_type_code::text)

Check Constraints

Constraint Name Description

Default Values

# Column Name Default
1 store_type_id nextval('office.store_types_store_type_id_seq'::regclass)
5 audit_ts now()

Triggers

Trigger Name Targets On Event Timing Condition Order Orientation Description