Column | Data Type | Nullable | Default | Description / PK / Index |
ShipMethodID | int | not null | | Primary key for ShipMethod records. PK_ShipMethod_ShipMethodID |
Name | dbo.Name | not null | | Shipping company name. AK_ShipMethod_Name |
ShipBase | money | not null | ((0.00)) | Minimum shipping charge.
|
ShipRate | money | not null | ((0.00)) | Shipping charge per pound.
|
rowguid | uniqueidentifier | not null | (newid()) | ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample. AK_ShipMethod_rowguid |
ModifiedDate | datetime | not null | (getdate()) | Date and time the record was last updated.
|