# reference_transaction_type

## Description

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

```sql
CREATE TABLE `reference_transaction_type` (
  `reference_transaction_type_id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `transaction_type_name` varchar(180) COLLATE utf8mb4_general_ci NOT NULL,
  `transaction_type_code` varchar(4) COLLATE utf8mb4_general_ci NOT NULL,
  PRIMARY KEY (`reference_transaction_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=[Redacted by tbls] DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci
```

</details>

## Columns

| Name                          | Type               | Default | Nullable | Extra Definition | Children                                                                                                  | Parents | Comment |
| ----------------------------- | ------------------ | ------- | -------- | ---------------- | --------------------------------------------------------------------------------------------------------- | ------- | ------- |
| reference_transaction_type_id | mediumint unsigned |         | false    | auto_increment   | [reference_transaction_type_group_transaction_type](reference_transaction_type_group_transaction_type.md) |         |         |
| transaction_type_code         | varchar(4)         |         | false    |                  |                                                                                                           |         |         |
| transaction_type_name         | varchar(180)       |         | false    |                  |                                                                                                           |         |         |

## Constraints

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

## Indexes

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

## Relations

![er](reference_transaction_type.svg)

---

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