# Sub Dictionary: `tbl_UserSmokes`

## Table Info

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

## Columns

| # | Column | Type | Nullable | Default | Key | Extra | Description |
|---|--------|------|----------|---------|-----|-------|-------------|
| 1 | `iUserSmokeId` | `int unsigned` | NO | - | PRI | auto_increment | Integer: User Smoke Id (likely FK) |
| 2 | `iUserId` | `int unsigned` | NO | - | MUL | - | Integer: User Id (likely FK) |
| 3 | `dDate` | `date` | NO | - | MUL | - | Datetime: Date |
| 4 | `iCount` | `int unsigned` | NO | - | MUL | - | Integer: Count |
| 5 | `setTimeStamps` | `varchar(2500)` | NO | - | - | - | Set/Comma-separated: Time Stamps |
| 6 | `dFirstTracked` | `datetime` | YES | NULL | - | - | Datetime: First Tracked |

## Indexes

| Name | Columns | Unique | Type |
|------|---------|--------|------|
| `idx_tbl_UserSmokes_dDate` | `dDate` | NO | BTREE |
| `idx_tbl_UserSmokes_iCount` | `iCount` | NO | BTREE |
| `iUser_dDate` | `iUserId`, `dDate` | YES | BTREE |
| `PRIMARY` | `iUserSmokeId` | YES | BTREE |

## Foreign Keys

### Formal Foreign Keys

None defined.

### Implicit Relationships (from column naming)

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