USE [safcdb2]
GO
/****** Object: Table [dbo].[MotorVehicleResponseSurvey] Script Date: 07/11/2010 11:35:50 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MotorVehicleResponseSurvey](
[MotorVehicleResponseSurveyID] [int] IDENTITY(1,1) NOT NULL,
[1] [nvarchar](500) NULL,
[1a] [int] NULL,
[1b] [int] NULL,
[1c] [nvarchar](100) NULL,
[2] [int] NULL,
[3] [int] NULL,
[4] [nvarchar](50) NULL,
CONSTRAINT [PK_MotorVehicleResponseSurvey] PRIMARY KEY CLUSTERED
(
[MotorVehicleResponseSurveyID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
|