|
Table T_CORREO_PLANTILLAS Plantillas de correos electrónicos (E-mail) |
| Columns |
| Name | Type | Optional | Default | Comments |
| ID_PLANTILLA | VARCHAR2(50) | Identificador de la plantilla | ||
| NOMBRE | VARCHAR2(100) | Y | Nombre de la plantilla | |
| ACTIVO | CHAR(1) | 'N' | La plantilla esta activa? (S/N) | |
| ID_CATEGORIA | NUMBER | Identificador de la categoría de la plantilla | ||
| DETALLE | VARCHAR2(2000) | Y | Detalles adicionales de la plantilla | |
| PLANTILLA_ASUNTO | VARCHAR2(2000) | Plantilla de asunto para los correos electrónicos | ||
| PLANTILLA_CONTENIDO | CLOB | Plantilla de contenido para los correos electrónicos |
| Primary Key |
| Name | Columns |
| PK_CORREO_PLANTILLAS | ID_PLANTILLA |
| Foreign Keys |
| Name | Columns | Referencing Table | Columns |
| FK_CORREO_PLANTILLAS_CATEGORIAS | ID_CATEGORIA | T_MENSAJERIA_CATEGORIAS | ID_CATEGORIA |
| Check Constraints |
| Name | Condition |
| CK_CORREO_PLANTILLAS_ACTIVO | ACTIVO IN ('S', 'N') |
| Indexes |
| Name | Columns | Type |
| PK_CORREO_PLANTILLAS | ID_PLANTILLA | Unique |