Table core.tax_master
Information on the applicable tax rates of various countries (tax master)supported by the software.
# Column Name Nullable Data Type Max Length Description
1tax_master_idinteger0The primary key of the table, which is also a serial field.
2tax_master_codecharacter varying12The code of the code master.
3tax_master_namecharacter varying50The name of the tax master.
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 tax_master_audit_user_id_fkey office.users.user_id

Indices

Index Name Owner Access Method Definition Description
tax_master_pkey postgres btree tax_master_id
tax_master_tax_master_name_uix postgres btree upper(tax_master_name::text)
tax_master_tax_master_code_uix postgres btree upper(tax_master_code::text)

Check Constraints

Constraint Name Description

Default Values

# Column Name Default
1 tax_master_id nextval('core.tax_master_tax_master_id_seq'::regclass)
5 audit_ts now()

Triggers

Trigger Name Targets On Event Timing Condition Order Orientation Description