customer_codes.sql 226 B

12345678910
  1. CREATE TABLE [dbo].[customer_codes] (
  2. [code] [int] NOT NULL,
  3. [description] [varchar](100) NULL,
  4. [client_db] [varchar](20) NOT NULL
  5. ,CONSTRAINT [customer_codes$0] PRIMARY KEY CLUSTERED ([code], [client_db])
  6. )
  7. GO