This table holds relationships between store
location and fulfillment center.
Column Descriptions:
| Name | Type | Description |
| STLFFMREL_ID | INTEGER NOT NULL | Unique ID and primary key |
| STLOC_ID | INTEGER NOT NULL | The identifier to physical store. |
| FFMCENTER_ID | INTEGER NOT NULL | The reference number for the fulfillment center
that represents the fulfillment for the specified store |
| ADDRESS_ID | BIGINT NOT NULL | The address of the physical store as stored in
the Address table. This is typically used as the shipping address
for items that are for in-store pickup. |
| 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> | STLFFMREL_ID | Primary Key |
| I0001220 | STLOC_ID+FFMCENTER_ID | Unique Index |
| I0001221 | FFMCENTER_ID | Non-Unique Index |
| I0001222 | ADDRESS_ID | Non-Unique Index |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| F_3578 | STLOC_ID | STLOC | STLOC_ID | Cascade |
| F_3579 | FFMCENTER_ID | FFMCENTER | FFMCENTER_ID | Cascade |
| F_3580 | ADDRESS_ID | ADDRESS | ADDRESS_ID | Cascade |