/****** Object:  Table [dbo].[Downloads]    Script Date: 02/11/2011 15:07:47 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

CREATE TABLE [dbo].[Downloads](
	[id] [int] IDENTITY(1,1) NOT NULL,
	[moment] [datetime] NOT NULL,
	[filename] [nvarchar](50) NOT NULL,
	[ipaddress] [nvarchar](50) NOT NULL,
 CONSTRAINT [PK_Downloads] PRIMARY KEY CLUSTERED
(
	[id] ASC
)
)

GO

