# Sub Dictionary: `tbl_CouponTypes`

## Table Info

| Property | Value |
|----------|-------|
| Table | `tbl_CouponTypes` |
| Database | quitsure |
| Connection | `mysql` |
| Engine | InnoDB |
| Type | TABLE |
| Category | Coupon/Voucher |
| Laravel Model | `CouponType` (app/Models/CouponType.php) |

## Columns

| # | Column | Type | Nullable | Default | Key | Extra | Description |
|---|--------|------|----------|---------|-----|-------|-------------|
| 1 | `iCouponTypeId` | `int unsigned` | NO | - | PRI | auto_increment | Integer: Coupon Type Id (likely FK) |
| 2 | `vType` | `varchar(255)` | NO | - | - | - | Varchar: Type |
| 3 | `vDescription` | `varchar(255)` | YES | NULL | - | - | Varchar: Description |
| 4 | `dDateCreated` | `datetime` | NO | `CURRENT_TIMESTAMP` | - | DEFAULT_GENERATED | Datetime: Date Created |
| 5 | `bActive` | `tinyint(1)` | NO | `1` | - | - | Boolean/Flag: Active |
| 6 | `vAngelEmail` | `varchar(255)` | YES | NULL | - | - | Varchar: Angel Email |
| 7 | `iPartnerId` | `int unsigned` | YES | NULL | - | - | Integer: Partner Id (likely FK) |

## Indexes

| Name | Columns | Unique | Type |
|------|---------|--------|------|
| `PRIMARY` | `iCouponTypeId` | YES | BTREE |

## Foreign Keys

### Formal Foreign Keys

None defined.

### Implicit Relationships (from column naming)

| Column | Likely References |
|--------|------------------|
| `iPartnerId` | `tbl_Partners.iPartnerId` |
