# Sub Dictionary: `cron_logs`

## Table Info

| Property | Value |
|----------|-------|
| Table | `cron_logs` |
| Database | laravel_logs |
| Connection | `logs` |
| Engine | InnoDB |
| Type | TABLE |
| Category | Logging |
| Laravel Model | `CronLog` (app/Models/CronLog.php) |

## Columns

| # | Column | Type | Nullable | Default | Key | Extra | Description |
|---|--------|------|----------|---------|-----|-------|-------------|
| 1 | `id` | `bigint unsigned` | NO | - | PRI | auto_increment | Auto-increment primary key |
| 2 | `cron` | `varchar(128)` | NO | - | MUL | - |  |
| 3 | `execution_time` | `decimal(7,3)` | NO | - | - | - |  |
| 4 | `total` | `int unsigned` | NO | - | - | - |  |
| 5 | `not_sent` | `int unsigned` | NO | - | - | - |  |
| 6 | `message` | `text` | YES | NULL | - | - |  |
| 7 | `context` | `json` | YES | NULL | - | - |  |
| 8 | `created_at` | `datetime` | YES | NULL | - | - | Laravel timestamp (created) |

## Indexes

| Name | Columns | Unique | Type |
|------|---------|--------|------|
| `cron_logs_cron_index` | `cron` | NO | BTREE |
| `PRIMARY` | `id` | YES | BTREE |

## Foreign Keys

### Formal Foreign Keys

None defined.

