# Sub Dictionary: `tbl_UserRazorPayments`

## Table Info

| Property | Value |
|----------|-------|
| Table | `tbl_UserRazorPayments` |
| Database | quitsure |
| Connection | `mysql` |
| Engine | InnoDB |
| Type | TABLE |
| Category | User |

## Columns

| # | Column | Type | Nullable | Default | Key | Extra | Description |
|---|--------|------|----------|---------|-----|-------|-------------|
| 1 | `id` | `int unsigned` | NO | - | PRI | auto_increment | Auto-increment primary key |
| 2 | `iUserId` | `int unsigned` | NO | - | MUL | - | Integer: User Id (likely FK) |
| 3 | `iUserProgramID` | `int unsigned` | YES | NULL | MUL | - | Integer: User Program ID (likely FK) |
| 4 | `vOrderID` | `varchar(255)` | NO | - | - | - | Varchar: Order ID |
| 5 | `vPaymentID` | `varchar(255)` | YES | NULL | - | - | Varchar: Payment ID |
| 6 | `vSignature` | `varchar(500)` | YES | NULL | - | - | Varchar: Signature |
| 7 | `dDateCreated` | `datetime` | YES | `CURRENT_TIMESTAMP` | - | DEFAULT_GENERATED | Datetime: Date Created |

## Indexes

| Name | Columns | Unique | Type |
|------|---------|--------|------|
| `iUserID` | `iUserId` | NO | BTREE |
| `iUserProgramID` | `iUserProgramID` | NO | BTREE |
| `PRIMARY` | `id` | YES | BTREE |

## Foreign Keys

### Formal Foreign Keys

None defined.

### Implicit Relationships (from column naming)

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