This table stores information about gift registry
reminders.
Column Descriptions:
| Name | Type | Description |
| EVTRMDLG_ID | BIGINT NOT NULL | Primary key of the table. |
| GIFTREGISTRY_ID | BIGINT NOT NULL | The gift registry for which this reminder is
logged. |
| 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. |
| SENTDATE | DATE NOT NULL | The date when the reminder is sent. |
| REMINDERTYPE | VARCHAR (32) NOT NULL | The type of reminder. |
Indexes:
| Name | Column Names | Type |
| <SYSTEM-GENERATED> | EVTRMDLG_ID | Primary Key |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| GRE_CONSTRAINT2 | GIFTREGISTRY_ID | GRGFTREG | GIFTREGISTRY_ID | No Action |