Stores audit records for each order line
submitted
Column Descriptions:
Name | Type | Description |
ORDERS_ID | BIGINT NOT NULL | The ID of the order. |
STOREENT_ID | INTEGER NOT NULL | The ID of the store where the order is placed
from. |
LINECOUNT | BIGINT NOT NULL | The number of order lines in an order. |
TIMEPLACED | TIMESTAMP NOT NULL | The time when the order was submitted. |
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 |
P_0032 | ORDERS_ID | Primary Key |
I0001522 | TIMEPLACED | Non-Unique Index |