# contract_lifecycle_schedule_detail

## Description

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

```sql
CREATE TABLE `contract_lifecycle_schedule_detail` (
  `contract_lifecycle_schedule_detail_id` smallint unsigned NOT NULL AUTO_INCREMENT,
  `period_interval` smallint unsigned NOT NULL,
  `period_type` enum('day','month','year') COLLATE utf8mb4_general_ci NOT NULL,
  PRIMARY KEY (`contract_lifecycle_schedule_detail_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 |
| ------------------------------------- | -------------------------- | ------- | -------- | ---------------- | ------------------------------------------------------------- | ------- | ------- |
| contract_lifecycle_schedule_detail_id | smallint unsigned          |         | false    | auto_increment   | [contract_lifecycle_schedule](contract_lifecycle_schedule.md) |         |         |
| period_interval                       | smallint unsigned          |         | false    |                  |                                                               |         |         |
| period_type                           | enum('day','month','year') |         | false    |                  |                                                               |         |         |

## Constraints

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

## Indexes

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

## Relations

![er](contract_lifecycle_schedule_detail.svg)

---

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