# oa_territory_backfilled_accounts

## Description

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

```sql
CREATE TABLE `oa_territory_backfilled_accounts` (
  `backfill_id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `accounts` json NOT NULL,
  `created_by` varchar(255) NOT NULL,
  `created_at` datetime NOT NULL,
  `audit_id` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`backfill_id`)
) ENGINE=InnoDB AUTO_INCREMENT=[Redacted by tbls] DEFAULT CHARSET=utf8mb3
```

</details>

## Columns

| Name        | Type               | Default | Nullable | Extra Definition | Children | Parents | Comment |
| ----------- | ------------------ | ------- | -------- | ---------------- | -------- | ------- | ------- |
| accounts    | json               |         | false    |                  |          |         |         |
| audit_id    | varchar(255)       |         | true     |                  |          |         |         |
| backfill_id | mediumint unsigned |         | false    | auto_increment   |          |         |         |
| created_at  | datetime           |         | false    |                  |          |         |         |
| created_by  | varchar(255)       |         | false    |                  |          |         |         |

## Constraints

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

## Indexes

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

## Relations

![er](oa_territory_backfilled_accounts.svg)

---

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