EnVisageOnline/Main-RMO/Database/Scripts/20150924/1_create_suptTableMaintenac...

25 lines
526 B
Transact-SQL

USE [EnVisage]
GO
IF OBJECT_ID('dbo.supt_tbl_DbMaintenanceCommands', 'U') IS NOT NULL
DROP TABLE [dbo].[supt_tbl_DbMaintenanceCommands]
GO
/****** Object: Table [dbo].[supt_tbl_DbMaintenanceCommands] Script Date: 09/24/2015 3:25:50 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[supt_tbl_DbMaintenanceCommands](
[id] [int] IDENTITY(1,1) NOT NULL,
[command] [nvarchar](max) NOT NULL,
[executed] [bit] NULL,
[Results] [nvarchar](max) NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO