This table stores the relationship between an order
item and a gift registry.
Column Descriptions:
Name | Type | Description |
ORDERITEMS_ID | BIGINT NOT NULL | The order item ID. |
EXTERNAL_ID | VARCHAR (64) NOT NULL | The external gift registry ID. |
GIFTMESSAGE | VARCHAR (4000) | A message to accompany the gift (order item),
from the gift giver to the gift registrant. |
SHIPTORGSTRNT | INTEGER | Specifies where gifts should be delivered. A
value of 1 indicates that gifts should be shipped directly to the
gift registrant, using the address provided during gift registry
profile creation. |
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> | ORDERITEMS_ID | Primary Key |