USE [logging2006] GO /****** Object: Table [dbo].[NotificationList] Script Date: 10-09-2015 23:27:05 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[NotificationList]( [NotificationListID] [varchar](50) NOT NULL, [NotificationID] [varchar](50) NOT NULL ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO