Table to hold information about URL redirection as
part of the SEO strategy to handle 404 and 301 redirects.
Column Descriptions:
| Name | Type | Description |
| SEOREDIRECT_ID | BIGINT NOT NULL | The internal reference number that references a
redirect rule. |
| LASTUSED | TIMESTAMP | The last time the redirection rule was used. |
| HITCOUNT | BIGINT | The number of times this redirection rule has
been used. |
| OPTCOUNTER | SMALLINT NOT NULL DEFAULT 0 | The optimistic concurrency control counter for
the table. Every time there is an update to the table, the counter
is incremented. |
Indexes:
| Name | Column Names | Type |
| <SYSTEM-GENERATED> | SEOREDIRECT_ID | Primary Key |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| F_3708 | SEOREDIRECT_ID | SEOREDIRECT | SEOREDIRECT_ID | Cascade |