| Field | Type | Defaults | Nulls? | Comments | | ProductID | int | None | No | Product identification number. Foreign key to Product.ProductID. |
| LocationID | smallint | None | No | Inventory location identification number. Foreign key to Location.LocationID. |
| Shelf | nvarchar (10) | None | No | Storage compartment within an inventory location. |
| Bin | tinyint | None | No | Storage container on a shelf in an inventory location. |
| Quantity | smallint | ((0)) | No | Quantity of products in the inventory location. |
| rowguid | uniqueidentifier | (newid()) | No | ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample. |
| ModifiedDate | datetime | (getdate()) | No | Date and time the record was last updated. |