DDL means what? You want the schema? There'll be a few irrelevant references.
/****** Object: Table [dbo].[VRESite] Script Date: 05/29/2009 15:43:15 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[VRESite](
[VRESiteId] [int] IDENTITY(1,1) NOT NULL,
[Name] [nvarchar](256) NOT NULL,
[Domain] [nvarchar](128) NOT NULL,
[CurrentPrice] [money] NOT NULL,
[CurrentOwnershipId] [int] NULL,
[IsActive] [dbo].[Flag] NOT NULL,
[UpdatedBy] [nvarchar](64) NOT NULL,
[UpdatedOn] [smalldatetime] NOT NULL,
[CreatedBy] [nvarchar](64) NOT NULL,
[CreatedOn] [smalldatetime] NOT NULL,
CONSTRAINT [PK_VRESite] PRIMARY KEY CLUSTERED
(
[VRESiteId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[VRESite] WITH CHECK ADD CONSTRAINT [FK_VRESite_SiteOwnership] FOREIGN KEY([CurrentOwnershipId])
REFERENCES [dbo].[SiteOwnership] ([SiteOwnershipId])
GO
ALTER TABLE [dbo].[VRESite] CHECK CONSTRAINT [FK_VRESite_SiteOwnership]
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[VRESiteStatus](
[VRESiteStatusId] [int] IDENTITY(1,1) NOT NULL,
[VRESiteId] [int] NOT NULL,
[StatusId] [int] NOT NULL,
[StatusDate] [smalldatetime] NOT NULL,
[StatusChangedById] [int] NOT NULL,
CONSTRAINT [PK_VRESiteStatus] PRIMARY KEY CLUSTERED
(
[VRESiteStatusId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[VRESiteStatus] WITH CHECK ADD CONSTRAINT [FK_VRESiteStatus_Status] FOREIGN KEY([StatusId])
REFERENCES [dbo].[Status] ([StatusId])
GO
ALTER TABLE [dbo].[VRESiteStatus] CHECK CONSTRAINT [FK_VRESiteStatus_Status]
GO
ALTER TABLE [dbo].[VRESiteStatus] WITH CHECK ADD CONSTRAINT [FK_VRESiteStatus_User] FOREIGN KEY([StatusChangedById])
REFERENCES [dbo].[User] ([UserId])
GO
ALTER TABLE [dbo].[VRESiteStatus] CHECK CONSTRAINT [FK_VRESiteStatus_User]
GO
ALTER TABLE [dbo].[VRESiteStatus] WITH CHECK ADD CONSTRAINT [FK_VRESiteStatus_VRESite] FOREIGN KEY([VRESiteId])
REFERENCES [dbo].[VRESite] ([VRESiteId])
GO
ALTER TABLE [dbo].[VRESiteStatus] CHECK CONSTRAINT [FK_VRESiteStatus_VRESite]
/****** Object: Table [dbo].[Status] Script Date: 05/29/2009 15:44:47 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Status](
[StatusId] [int] IDENTITY(1,1) NOT NULL,
[Name] [nvarchar](32) NOT NULL,
CONSTRAINT [PK_Status] PRIMARY KEY CLUSTERED
(
[StatusId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]