# Sub Dictionary: `users`

## Table Info

| Property | Value |
|----------|-------|
| Table | `users` |
| Database | quitsure |
| Connection | `mysql` |
| Engine | InnoDB |
| Type | TABLE |
| Category | Core/Master |

## Columns

| # | Column | Type | Nullable | Default | Key | Extra | Description |
|---|--------|------|----------|---------|-----|-------|-------------|
| 1 | `id` | `bigint unsigned` | NO | - | PRI | auto_increment | Auto-increment primary key |
| 2 | `name` | `varchar(255)` | NO | - | - | - |  |
| 3 | `email` | `varchar(255)` | NO | - | UNI | - |  |
| 4 | `email_verified_at` | `timestamp` | YES | NULL | - | - | Email verification timestamp |
| 5 | `password` | `varchar(255)` | NO | - | - | - |  |
| 6 | `remember_token` | `varchar(100)` | YES | NULL | - | - | Laravel remember-me token |
| 7 | `created_at` | `timestamp` | YES | NULL | - | - | Laravel timestamp (created) |
| 8 | `updated_at` | `timestamp` | YES | NULL | - | - | Laravel timestamp (updated) |

## Indexes

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

## Foreign Keys

### Formal Foreign Keys

None defined.

