| # | Column Name | Nullable | Data Type | Max Length | Description |
|---|---|---|---|---|---|
| 1 | tax_master_id | integer | 0 | The primary key of the table, which is also a serial field. | |
| 2 | tax_master_code | character varying | 12 | The code of the code master. | |
| 3 | tax_master_name | character varying | 50 | The name of the tax master. | |
| 4 | audit_user_id | integer | 0 | Contains the id of the user who last inserted or updated the corresponding row. | |
| 5 | audit_ts | timestamp with time zone | 0 | Contains the date and timestamp of the last insert or update action. |
| # | Column Name | Key Name | References |
|---|---|---|---|
| 4 | audit_user_id | tax_master_audit_user_id_fkey | office.users.user_id |
| 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) |
| Constraint Name | Description |
|---|
| # | Column Name | Default |
|---|---|---|
| 1 | tax_master_id | nextval('core.tax_master_tax_master_id_seq'::regclass) |
| 5 | audit_ts | now() |
| Trigger Name | Targets | On Event | Timing | Condition | Order | Orientation | Description |
|---|