Generic tbl
From UG
Related bo wiki
MySQL Table Definitions
on 08-Apr-2010
mysql> describe tblGenericShipment; +-------------------------------------+---------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------------------------------------+---------------+------+-----+---------+----------------+ | Id | int(10) | NO | PRI | NULL | auto_increment | | ClientCompanyId | int(10) | NO | MUL | NULL | | | ShipperAddressId | int(10) | YES | MUL | NULL | | | ShipperAddressDescription | varchar(1500) | YES | | NULL | | | ConsigneeAddressId | int(10) | YES | MUL | NULL | | | ConsigneeAddressDescription | varchar(1500) | YES | | NULL | | | NotifyAddressId | int(10) | YES | MUL | NULL | | | NotifyAddressDescription | varchar(1500) | YES | | NULL | | | PickupAddressId | int(10) | YES | MUL | NULL | | | PickupAddressDescription | varchar(1500) | YES | | NULL | | | GeneralDeliveryToAddressId | int(10) | YES | MUL | NULL | | | GeneralDeliveryToAddressDescription | varchar(1500) | YES | | NULL | | | PickupComments | varchar(1500) | YES | | NULL | | | PickupTruckerId | int(10) | YES | MUL | NULL | | | EstimatedPickupDate | date | YES | | NULL | | | ActualPickupDate | date | YES | | NULL | | | OriginPoint | varchar(30) | YES | | NULL | | | DestinationPoint | varchar(30) | YES | | NULL | | | TransportModeId | int(10) | YES | MUL | NULL | | | ClientModeId | int(10) | YES | MUL | NULL | | | ShippingTermId | int(10) | YES | MUL | NULL | | | ShippingTermLocation | varchar(30) | YES | | NULL | | | CommodityDescription | varchar(1500) | YES | | NULL | | | MarksOrNumber | varchar(1500) | YES | | NULL | | | AuthorizedBy | varchar(30) | YES | | NULL | | | AuthorizedDate | date | YES | | NULL | | | EstimatedDeliveryDate | date | YES | | NULL | | | AuthorizationMethodId | int(10) | YES | MUL | NULL | | | ExportRef | varchar(30) | YES | | NULL | | | ImportRef | varchar(30) | YES | | NULL | | | CustomerRef | varchar(30) | YES | | NULL | | | Jaguar3rdRef | varchar(30) | YES | | NULL | | | MasterId | int(10) | YES | MUL | NULL | | | IsDeleted | bit(1) | NO | | b'0' | | | LastModifiedUserId | int(10) | YES | MUL | NULL | | | CreatedOnDate | datetime | YES | | NULL | | | IsDimsMode | tinyint(1) | NO | | 0 | | | TotalHUInCubicMeters | double | YES | | 0 | | | TotalHUInCubicFeets | double | YES | | 0 | | | OriginPointCountryId | int(10) | YES | | NULL | | | DestinationPointCountryId | int(10) | YES | | NULL | | | ShipmentGroupId | int(10) | YES | MUL | NULL | | | NotificationDate | date | YES | | NULL | | | EnabledTransShipment | tinyint(1) | YES | | 0 | | | EnabledOriginTerminal | tinyint(1) | YES | | 0 | | | EnabledDestinationTerminal | tinyint(1) | YES | | 0 | | | ShowPickupAddress | tinyint(1) | YES | | 0 | | | ShowDeliveryToAddress | tinyint(1) | YES | | 0 | | | ShowOriginPointCountry | tinyint(1) | YES | | 0 | | | ShowDestinationPointCountry | tinyint(1) | YES | | 0 | | | AuthorizedMOT | int(10) | YES | | NULL | | | TableOfChargesId | int(10) | YES | MUL | NULL | | | SalesPersonId | int(10) | YES | MUL | NULL | | | CreatedByOfficeId | int(10) | NO | MUL | 1 | | +-------------------------------------+---------------+------+-----+---------+----------------+ 54 rows in set -- ---------------------------- -- Table structure for tblGenericShipment -- ---------------------------- DROP TABLE IF EXISTS `tblGenericShipment`; CREATE TABLE `tblGenericShipment` ( `Id` int(10) NOT NULL AUTO_INCREMENT, `ClientCompanyId` int(10) NOT NULL, `ShipperAddressId` int(10) DEFAULT NULL, `ShipperAddressDescription` varchar(1500) DEFAULT NULL, `ConsigneeAddressId` int(10) DEFAULT NULL, `ConsigneeAddressDescription` varchar(1500) DEFAULT NULL, `NotifyAddressId` int(10) DEFAULT NULL, `NotifyAddressDescription` varchar(1500) DEFAULT NULL, `PickupAddressId` int(10) DEFAULT NULL, `PickupAddressDescription` varchar(1500) DEFAULT NULL, `GeneralDeliveryToAddressId` int(10) DEFAULT NULL, `GeneralDeliveryToAddressDescription` varchar(1500) DEFAULT NULL, `PickupComments` varchar(1500) DEFAULT NULL, `PickupTruckerId` int(10) DEFAULT NULL, `EstimatedPickupDate` date DEFAULT NULL, `ActualPickupDate` date DEFAULT NULL, `OriginPoint` varchar(30) DEFAULT NULL, `DestinationPoint` varchar(30) DEFAULT NULL, `TransportModeId` int(10) DEFAULT NULL, `ClientModeId` int(10) DEFAULT NULL, `ShippingTermId` int(10) DEFAULT NULL, `ShippingTermLocation` varchar(30) DEFAULT NULL, `CommodityDescription` varchar(1500) DEFAULT NULL, `MarksOrNumber` varchar(1500) DEFAULT NULL, `AuthorizedBy` varchar(30) DEFAULT NULL, `AuthorizedDate` date DEFAULT NULL, `EstimatedDeliveryDate` date DEFAULT NULL, `AuthorizationMethodId` int(10) DEFAULT NULL, `ExportRef` varchar(30) DEFAULT NULL, `ImportRef` varchar(30) DEFAULT NULL, `CustomerRef` varchar(30) DEFAULT NULL, `Jaguar3rdRef` varchar(30) DEFAULT NULL, `MasterId` int(10) DEFAULT NULL, `IsDeleted` bit(1) NOT NULL DEFAULT b'0', `LastModifiedUserId` int(10) DEFAULT NULL, `CreatedOnDate` datetime DEFAULT NULL, `IsDimsMode` tinyint(1) NOT NULL DEFAULT '0', `TotalHUInCubicMeters` double DEFAULT '0', `TotalHUInCubicFeets` double DEFAULT '0', `OriginPointCountryId` int(10) DEFAULT NULL, `DestinationPointCountryId` int(10) DEFAULT NULL, `ShipmentGroupId` int(10) DEFAULT NULL, `NotificationDate` date DEFAULT NULL, `EnabledTransShipment` tinyint(1) DEFAULT '0', `EnabledOriginTerminal` tinyint(1) DEFAULT '0', `EnabledDestinationTerminal` tinyint(1) DEFAULT '0', `ShowPickupAddress` tinyint(1) DEFAULT '0', `ShowDeliveryToAddress` tinyint(1) DEFAULT '0', `ShowOriginPointCountry` tinyint(1) DEFAULT '0', `ShowDestinationPointCountry` tinyint(1) DEFAULT '0', `AuthorizedMOT` int(10) DEFAULT NULL, `TableOfChargesId` int(10) DEFAULT NULL, `SalesPersonId` int(10) DEFAULT NULL, `CreatedByOfficeId` int(10) NOT NULL DEFAULT '1', PRIMARY KEY (`Id`), KEY `GenericShipment_ClientCompanyId` (`ClientCompanyId`), KEY `GenericShipment_ShipperAddressId` (`ShipperAddressId`), KEY `GenericShipment_ConsigneeAddressId` (`ConsigneeAddressId`), KEY `GenericShipment_NotifyAddressId` (`NotifyAddressId`), KEY `GenericShipment_PickupAddressId` (`PickupAddressId`), KEY `GenericShipment_GeneralDeliveryToAddressId` (`GeneralDeliveryToAddressId`), KEY `GenericShipment_PickupTruckerId` (`PickupTruckerId`), KEY `GenericShipment_TransportModeId` (`TransportModeId`), KEY `GenericShipment_ShippingTermId` (`ShippingTermId`), KEY `GenericShipment_AuthorizationMethodId` (`AuthorizationMethodId`), KEY `GenericShipment_MasterId` (`MasterId`), KEY `GenericShipment_LastModifiedUserId` (`LastModifiedUserId`), KEY `tblGenericShipment_ibfk_27` (`ClientModeId`), KEY `ShipmentGroupId` (`ShipmentGroupId`), KEY `SalesPersonId` (`SalesPersonId`), KEY `TableOfChargesId` (`TableOfChargesId`), KEY `CreatedByOfficeId` (`CreatedByOfficeId`), CONSTRAINT `fkCreatedByOfficeId` FOREIGN KEY (`CreatedByOfficeId`) REFERENCES `tbloffice` (`Id`) ON UPDATE CASCADE, CONSTRAINT `tblGenericShipment_fk` FOREIGN KEY (`TableOfChargesId`) REFERENCES `tbltableofcharges` (`Id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `tblGenericShipment_ibfk_1` FOREIGN KEY (`ShipmentGroupId`) REFERENCES `tblshipmentgroup` (`Id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `tblGenericShipment_ibfk_10` FOREIGN KEY (`AuthorizationMethodId`) REFERENCES `tblauthorizationmethod` (`Id`), CONSTRAINT `tblGenericShipment_ibfk_11` FOREIGN KEY (`SalesPersonId`) REFERENCES `tbljaguaruser` (`Id`) ON UPDATE CASCADE, CONSTRAINT `tblGenericShipment_ibfk_2` FOREIGN KEY (`ShipperAddressId`) REFERENCES `tbladdresstransportation` (`Id`), CONSTRAINT `tblGenericShipment_ibfk_25` FOREIGN KEY (`MasterId`) REFERENCES `tblmasterocean` (`Id`) ON DELETE SET NULL, CONSTRAINT `tblGenericShipment_ibfk_26` FOREIGN KEY (`LastModifiedUserId`) REFERENCES `tbljaguaruser` (`Id`) ON DELETE SET NULL, CONSTRAINT `tblGenericShipment_ibfk_27` FOREIGN KEY (`ClientModeId`) REFERENCES `tblclientmode` (`Id`), CONSTRAINT `tblGenericShipment_ibfk_28` FOREIGN KEY (`PickupTruckerId`) REFERENCES `tbladdressjaguarvendor` (`Id`), CONSTRAINT `tblGenericShipment_ibfk_29` FOREIGN KEY (`ClientCompanyId`) REFERENCES `tblclientcompany` (`Id`), CONSTRAINT `tblGenericShipment_ibfk_3` FOREIGN KEY (`ConsigneeAddressId`) REFERENCES `tbladdresstransportation` (`Id`), CONSTRAINT `tblGenericShipment_ibfk_4` FOREIGN KEY (`NotifyAddressId`) REFERENCES `tbladdresstransportation` (`Id`), CONSTRAINT `tblGenericShipment_ibfk_5` FOREIGN KEY (`GeneralDeliveryToAddressId`) REFERENCES `tbladdresstransportation` (`Id`), CONSTRAINT `tblGenericShipment_ibfk_6` FOREIGN KEY (`PickupAddressId`) REFERENCES `tbladdresstransportation` (`Id`), CONSTRAINT `tblGenericShipment_ibfk_8` FOREIGN KEY (`TransportModeId`) REFERENCES `tbltransportmode` (`Id`), CONSTRAINT `tblGenericShipment_ibfk_9` FOREIGN KEY (`ShippingTermId`) REFERENCES `tblshippingterm` (`Id`) )ENGINE=InnoDB AUTO_INCREMENT=300054 CHARACTER SET 'latin1' COLLATE 'latin1_swedish_ci' COMMENT='InnoDB free: 9216 kB; (`ShipmentGroupId`) REFER `cybertrax/t';
Fields
Id
` int(10) NOT NULL AUTO_INCREMENT
ClientCompanyId
` int(10) NOT NULL
ShipperAddressId
` int(10) DEFAULT NULL
ShipperAddressDescription
` varchar(1500) DEFAULT NULL
ConsigneeAddressId
` int(10) DEFAULT NULL
ConsigneeAddressDescription
` varchar(1500) DEFAULT NULL
NotifyAddressId
` int(10) DEFAULT NULL
NotifyAddressDescription
` varchar(1500) DEFAULT NULL
PickupAddressId
` int(10) DEFAULT NULL
PickupAddressDescription
` varchar(1500) DEFAULT NULL
GeneralDeliveryToAddressId
` int(10) DEFAULT NULL
GeneralDeliveryToAddressDescription
` varchar(1500) DEFAULT NULL
PickupComments
` varchar(1500) DEFAULT NULL
PickupTruckerId
` int(10) DEFAULT NULL
EstimatedPickupDate
` date DEFAULT NULL
ActualPickupDate
` date DEFAULT NULL
OriginPoint
` varchar(30) DEFAULT NULL
DestinationPoint
` varchar(30) DEFAULT NULL
TransportModeId
` int(10) DEFAULT NULL
ClientModeId
` int(10) DEFAULT NULL
ShippingTermId
` int(10) DEFAULT NULL
ShippingTermLocation
` varchar(30) DEFAULT NULL
CommodityDescription
` varchar(1500) DEFAULT NULL
MarksOrNumber
` varchar(1500) DEFAULT NULL
AuthorizedBy
` varchar(30) DEFAULT NULL
AuthorizedDate
` date DEFAULT NULL
EstimatedDeliveryDate
` date DEFAULT NULL
AuthorizationMethodId
` int(10) DEFAULT NULL
ExportRef
` varchar(30) default NULL,
ImportRef
` varchar(30) default NULL,
CustomerRef
` varchar(30) default NULL,
Jaguar3rdRef
` varchar(30) default NULL,
MasterId
` int(10) DEFAULT NULL
IsDeleted
` bit(1) NOT NULL DEFAULT b'0'
LastModifiedUserId
` int(10) DEFAULT NULL
CreatedOnDate
` datetime DEFAULT NULL
IsDimsMode
` tinyint(1) NOT NULL DEFAULT '0'
TotalHUInCubicMeters
` double DEFAULT '0'
TotalHUInCubicFeets
` double DEFAULT '0'
OriginPointCountryId
` int(10) DEFAULT NULL
DestinationPointCountryId
` int(10) DEFAULT NULL
ShipmentGroupId
` int(10) DEFAULT NULL
NotificationDate
` date DEFAULT NULL
EnabledTransShipment
` tinyint(1) DEFAULT '0'
EnabledOriginTerminal
` tinyint(1) DEFAULT '0'
EnabledDestinationTerminal
` tinyint(1) DEFAULT '0'
ShowPickupAddress
` tinyint(1) DEFAULT '0'
ShowDeliveryToAddress
` tinyint(1) DEFAULT '0'
ShowOriginPointCountry
` tinyint(1) DEFAULT '0'
ShowDestinationPointCountry
` tinyint(1) DEFAULT '0'
AuthorizedMOT
` int(10) DEFAULT NULL
TableOfChargesId
` int(10) DEFAULT NULL
SalesPersonId
` int(10) DEFAULT NULL
CreatedByOfficeId
` int(10) NOT NULL DEFAULT '1'