# Sub Dictionary: `tbl_PartnerEvents`

## Table Info

| Property | Value |
|----------|-------|
| Table | `tbl_PartnerEvents` |
| Database | quitsure |
| Connection | `mysql` |
| Engine | InnoDB |
| Type | TABLE |
| Category | Partner |
| Laravel Model | `PartnerEvent` (app/Models/PartnerEvent.php) |

## Columns

| # | Column | Type | Nullable | Default | Key | Extra | Description |
|---|--------|------|----------|---------|-----|-------|-------------|
| 1 | `id` | `int unsigned` | NO | - | PRI | auto_increment | Auto-increment primary key |
| 2 | `iPartnerId` | `int unsigned` | NO | - | - | - | Integer: Partner Id (likely FK) |
| 3 | `iUserId` | `int unsigned` | NO | - | - | - | Integer: User Id (likely FK) |
| 4 | `vEventName` | `varchar(50)` | NO | - | - | - | Varchar: Event Name |
| 5 | `vEventDetails` | `varchar(1000)` | YES | NULL | - | - | Varchar: Event Details |
| 6 | `dDateCreated` | `datetime` | YES | `CURRENT_TIMESTAMP` | - | DEFAULT_GENERATED | Datetime: Date Created |
| 7 | `bSent` | `tinyint(1)` | YES | NULL | - | - | Boolean/Flag: Sent |

## Indexes

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

## Foreign Keys

### Formal Foreign Keys

None defined.

### Implicit Relationships (from column naming)

| Column | Likely References |
|--------|------------------|
| `iPartnerId` | `tbl_Partners.iPartnerId` |
| `iUserId` | `tbl_Users.iUserID` |
