/* Microsoft SQL Server - Scripting */
/* Server: VALHALLA-MDD06H */
/* Database: Forum Related Work */
/* Creation Date 1/2/2000 1:04:35 AM */
/****** Object: Table [dbo].[My Resource Files] Script Date: 1/2/2000 1:04:06 AM ******/
if exists (select * from sysobjects
where id = object_id(N'[dbo].[My Resource Files]') and
OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[My Resource Files]
GO
/****** Object: Table [dbo].[My Resource Files] Script Date: 1/2/2000 1:04:06 AM ******/
CREATE TABLE [dbo].[My Resource Files] (
[Directory] [varchar] (255) NOT NULL
CONSTRAINT DF_Current_Directory DEFAULT ('.') ,
[RelativePath] [varchar] (255) NULL ,
[Filename] [varchar] (255) NULL ,
[Description] [text] NULL ,
[Contents] [text] NULL ,
[Create] [datetime] NULL ,
[Write] [datetime] NULL
) ON [PRIMARY]
GO
This page was last updated on May 01, 2006 04:28 PM.