# tax_withholding_override_history

## Description

<details>
<summary><strong>Table Definition</strong></summary>

```sql
CREATE TABLE `tax_withholding_override_history` (
  `tax_withholding_override_history_id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `tax_withholding_override_id` mediumint unsigned NOT NULL,
  `account_payee_id` mediumint unsigned NOT NULL,
  `rate_override` decimal(5,2) DEFAULT NULL,
  `certificate_expiration_date` date DEFAULT NULL,
  `message` text,
  `created_by` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL,
  `last_modified_by` varchar(255) NOT NULL,
  `last_modified` datetime NOT NULL,
  PRIMARY KEY (`tax_withholding_override_history_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
```

</details>

## Columns

| Name                                | Type               | Default | Nullable | Extra Definition | Children | Parents                                                 | Comment |
| ----------------------------------- | ------------------ | ------- | -------- | ---------------- | -------- | ------------------------------------------------------- | ------- |
| account_payee_id                    | mediumint unsigned |         | false    |                  |          | [account_payee](account_payee.md)                       |         |
| certificate_expiration_date         | date               |         | true     |                  |          |                                                         |         |
| created_at                          | datetime           |         | false    |                  |          |                                                         |         |
| created_by                          | varchar(255)       |         | false    |                  |          |                                                         |         |
| last_modified                       | datetime           |         | false    |                  |          |                                                         |         |
| last_modified_by                    | varchar(255)       |         | false    |                  |          |                                                         |         |
| message                             | text               |         | true     |                  |          |                                                         |         |
| rate_override                       | decimal(5,2)       |         | true     |                  |          |                                                         |         |
| tax_withholding_override_history_id | mediumint unsigned |         | false    | auto_increment   |          |                                                         |         |
| tax_withholding_override_id         | mediumint unsigned |         | false    |                  |          | [tax_withholding_override](tax_withholding_override.md) |         |

## Constraints

| Name    | Type        | Definition                                        |
| ------- | ----------- | ------------------------------------------------- |
| PRIMARY | PRIMARY KEY | PRIMARY KEY (tax_withholding_override_history_id) |

## Indexes

| Name    | Definition                                                    |
| ------- | ------------------------------------------------------------- |
| PRIMARY | PRIMARY KEY (tax_withholding_override_history_id) USING BTREE |

## Relations

![er](tax_withholding_override_history.svg)

---

> Generated by [tbls](https://github.com/k1LoW/tbls)
