Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | ||
|---|---|---|---|---|---|---|---|---|---|---|
| id | INT | 10 | √ | null |
|
|
Primary id for this table. This uniquely identifies the row. |
|||
| linktype_id | INT | 10 | √ | null |
|
|
Foreign key to linktypes (linktypes.id). |
|||
| foreign_id | INT | 10 | √ | null |
|
|
||||
| hyperlink | VARCHAR | 255 | √ | null |
|
|
The actual hyperlink. |
|||
| description | VARCHAR | 255 | √ | null |
|
|
A description of the link. |
|||
| visibility | BIT | 1 | √ | 1 |
|
|
Determines if the link is visible or not: {0, 1} |
|||
| created_on | DATETIME | 26 | √ | CURRENT_TIMESTAMP |
|
|
When the record was created. |
|||
| updated_on | TIMESTAMP | 26 | √ | CURRENT_TIMESTAMP |
|
|
When the record was updated. This may be different from the created on date if subsequent changes have been made to the underlying record. |
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| PRIMARY | Primary key | Asc | id |
| links_id | Performance | Asc | id |
| links_linktype_id | Performance | Asc | linktype_id |