import.Vehicle_Appointment.sql 456 B

1234567891011121314
  1. CREATE TABLE [import].[Vehicle_Appointment] (
  2. [timestamp] [timestamp] NOT NULL,
  3. [VIN] [varchar](20) NOT NULL,
  4. [Appointment Type] [varchar](10) NOT NULL,
  5. [Next Appointment Date] [datetime] NOT NULL,
  6. [Next Appointment at Mileage] [int] NOT NULL,
  7. [Auto Planned RSP Export] [tinyint] NOT NULL,
  8. [Client_DB] [varchar](20) NOT NULL
  9. ,CONSTRAINT [Vehicle_Appointment$0] PRIMARY KEY CLUSTERED ([VIN], [Appointment Type], [Client_DB])
  10. )
  11. GO