Tables [dbo].[SHNotifications]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created1:00:43 AM Thursday, March 21, 2019
Last Modified1:09:39 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK_SHNotifications: NotificationIDNotificationIDint4
False
1 - 1
Subjectvarchar(255)255
False
Messagevarchar(4000)4000
False
SendTovarchar(255)255
False
SendCCvarchar(255)255
False
('')
IsHTMLbit1
False
((1))
Sentbit1
False
((0))
SendFailedCountint4
False
((0))
SendErrorvarchar(255)255
True
CreatorIDchar(8)8
False
CreateDatedatetime8
False
(getdate())
UpdatorIDchar(8)8
False
LastUpdatedatetime8
False
(getdate())
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_SHNotifications: NotificationIDPK_SHNotificationsNotificationID
True
80
CREATE TABLE [dbo].[SHNotifications]
(
[NotificationID] [int] NOT NULL IDENTITY(1, 1),
[Subject] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Message] [varchar] (4000) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[SendTo] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[SendCC] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_SHNotifications_SendCC] DEFAULT (''),
[IsHTML] [bit] NOT NULL CONSTRAINT [DF_SHNotifications_IsHTML] DEFAULT ((1)),
[Sent] [bit] NOT NULL CONSTRAINT [DF_SHNotifications_Sent] DEFAULT ((0)),
[SendFailedCount] [int] NOT NULL CONSTRAINT [DF_SHNotifications_SendFailedCount] DEFAULT ((0)),
[SendError] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[CreatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[CreateDate] [datetime] NOT NULL CONSTRAINT [DF_SHNotifications_CreateDate] DEFAULT (getdate()),
[UpdatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[LastUpdate] [datetime] NOT NULL CONSTRAINT [DF_SHNotifications_LastUpdate] DEFAULT (getdate())
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SHNotifications] ADD CONSTRAINT [PK_SHNotifications] PRIMARY KEY CLUSTERED  ([NotificationID]) ON [PRIMARY]
GO