# Sub Dictionary: `tbl_SearchSynonyms`

## Table Info

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

## Columns

| # | Column | Type | Nullable | Default | Key | Extra | Description |
|---|--------|------|----------|---------|-----|-------|-------------|
| 1 | `iSearchSynonymID` | `int unsigned` | NO | - | PRI | auto_increment | Integer: Search Synonym ID (likely FK) |
| 2 | `vName` | `varchar(255)` | NO | - | UNI | - | Varchar: Name |
| 3 | `vTerms` | `varchar(1000)` | NO | - | - | - | Varchar: Terms |
| 4 | `iProgramID` | `int unsigned` | YES | NULL | - | - | Integer: Program ID (likely FK) |
| 5 | `dDateCreated` | `datetime` | NO | `CURRENT_TIMESTAMP` | - | DEFAULT_GENERATED | Datetime: Date Created |
| 6 | `dDateUpdated` | `datetime` | YES | NULL | - | - | Datetime: Date Updated |

## Indexes

| Name | Columns | Unique | Type |
|------|---------|--------|------|
| `PRIMARY` | `iSearchSynonymID` | YES | BTREE |
| `tbl_searchsynonyms_vname_unique` | `vName` | YES | BTREE |

## Foreign Keys

### Formal Foreign Keys

None defined.

### Implicit Relationships (from column naming)

| Column | Likely References |
|--------|------------------|
| `iProgramID` | `tbl_Programs.iProgramID` |

## Laravel Eloquent Relationships

| Method | Type | Related Model | Foreign Key |
|--------|------|--------------|-------------|
| `program()` | belongsTo | `Program` | `iProgramID` |
