USE [AirTrak] GO /****** Object: Table [dbo].[tbl_CustomerRoutingLabelCode] Script Date: 10/23/2020 12:29:19 AM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[tbl_CustomerRoutingLabelCode]( [PK_CustomerRoutingCodeNo] [int] IDENTITY(1,1) NOT NULL, [BillNo] [int] NULL, [ConNo] [int] NULL, [VendorId] [varchar](8) NULL, [CustomerCode] [varchar](10) NULL, [SpecialInstructions] [varchar](120) NULL, CONSTRAINT [PK_tbl_CustomerRoutingLabelCode] PRIMARY KEY CLUSTERED ( [PK_CustomerRoutingCodeNo] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO