# Sub Dictionary: `tbl_CountryLanguage`

## Table Info

| Property | Value |
|----------|-------|
| Table | `tbl_CountryLanguage` |
| Database | quitsure |
| Connection | `mysql` |
| Engine | InnoDB |
| Type | TABLE |
| Category | Core/Master |
| Laravel Model | `CountryLanguage` (app/Models/CountryLanguage.php) |

## Columns

| # | Column | Type | Nullable | Default | Key | Extra | Description |
|---|--------|------|----------|---------|-----|-------|-------------|
| 1 | `id` | `int unsigned` | NO | - | PRI | auto_increment | Auto-increment primary key |
| 2 | `vCountry` | `varchar(100)` | NO | - | MUL | - | Varchar: Country |
| 3 | `iCurrencyId` | `int unsigned` | NO | - | MUL | - | Integer: Currency Id (likely FK) |
| 4 | `iLanguageId` | `int unsigned` | NO | - | - | - | Integer: Language Id (likely FK) |
| 5 | `bDeleted` | `tinyint` | YES | `0` | MUL | - | Boolean/Flag: Deleted |
| 6 | `dDateCreated` | `datetime` | YES | `CURRENT_TIMESTAMP` | - | DEFAULT_GENERATED | Datetime: Date Created |

## Indexes

| Name | Columns | Unique | Type |
|------|---------|--------|------|
| `iCurrencyId_iLanguageId` | `iCurrencyId`, `iLanguageId` | YES | BTREE |
| `idx_bDeleted` | `bDeleted` | NO | BTREE |
| `idx_tbl_countrylanguage_vCountry` | `vCountry` | NO | BTREE |
| `PRIMARY` | `id` | YES | BTREE |

## Foreign Keys

### Formal Foreign Keys

None defined.

### Implicit Relationships (from column naming)

| Column | Likely References |
|--------|------------------|
| `iCurrencyId` | `tbl_Currency.iCurrencyId` |
| `iLanguageId` | `tbl_Languages.iLanguageId` |
