Tables [dbo].[Forum_Users]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count1
Created2:07:30 PM Saturday, November 06, 2010
Last Modified2:07:33 PM Saturday, November 06, 2010
Columns
NameData TypeMax Length (Bytes)Allow NullsDefault
UserIDint4
No
Signaturenvarchar(1024)2048
Yes
UserAvatarint4
Yes
((0))
Avatarnvarchar(255)510
Yes
AdditionalAvatarsnvarchar(255)510
Yes
PostCountint4
Yes
((0))
LastActivitydatetime8
Yes
(((1)/(1))/(2001))
IsTrustedbit1
Yes
((0))
EnableOnlineStatusbit1
Yes
((1))
ThreadsPerPageint4
Yes
PostsPerPageint4
Yes
ViewDescendingbit1
Yes
((0))
EnableModNotificationbit1
Yes
EmailFormatint4
No
((1))
PortalIDint4
No
EnablePublicEmailbit1
No
((0))
TrackingDurationint4
No
((1000))
LockTrustbit1
No
((0))
IsBannedbit1
No
((0))
LiftBanDatedatetime8
Yes
EnableSelfNotificationsbit1
No
((0))
EnableProfileWebbit1
No
((1))
EnableDefaultPostNotifybit1
No
((1))
StartBanDatedatetime8
Yes
SQL Script
CREATE TABLE [dbo].[Forum_Users]
(
[UserID] [int] NOT NULL,
[Signature] [nvarchar] (1024) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[UserAvatar] [int] NULL CONSTRAINT [DF_Forum_Users_UseAvatar] DEFAULT ((0)),
[Avatar] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[AdditionalAvatars] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[PostCount] [int] NULL CONSTRAINT [DF_Forum_Users_PostCount] DEFAULT ((0)),
[LastActivity] [datetime] NULL CONSTRAINT [DF_Forum_Users_LastActivity] DEFAULT (((1)/(1))/(2001)),
[IsTrusted] [bit] NULL CONSTRAINT [DF_Forum_Users_IsTrusted] DEFAULT ((0)),
[EnableOnlineStatus] [bit] NULL CONSTRAINT [DF_Forum_Users_EnableOnlineStatus] DEFAULT ((1)),
[ThreadsPerPage] [int] NULL,
[PostsPerPage] [int] NULL,
[ViewDescending] [bit] NULL CONSTRAINT [DF_Forum_Users_ViewDescending] DEFAULT ((0)),
[EnableModNotification] [bit] NULL,
[EmailFormat] [int] NOT NULL CONSTRAINT [DF_Forum_Users_EmailFormat] DEFAULT ((1)),
[PortalID] [int] NOT NULL,
[EnablePublicEmail] [bit] NOT NULL CONSTRAINT [DF_Forum_Users_EnablePublicEmail] DEFAULT ((0)),
[TrackingDuration] [int] NOT NULL CONSTRAINT [DF_Forum_Users_TrackingDuration] DEFAULT ((1000)),
[LockTrust] [bit] NOT NULL CONSTRAINT [DF_Forum_Users_LockTrust] DEFAULT ((0)),
[IsBanned] [bit] NOT NULL CONSTRAINT [DF_Forum_Users_IsBanned] DEFAULT ((0)),
[LiftBanDate] [datetime] NULL,
[EnableSelfNotifications] [bit] NOT NULL CONSTRAINT [DF_Forum_Users_EnableSelfNotifications] DEFAULT ((0)),
[EnableProfileWeb] [bit] NOT NULL CONSTRAINT [DF_Forum_Users_EnableProfileWeb] DEFAULT ((1)),
[EnableDefaultPostNotify] [bit] NOT NULL CONSTRAINT [DF_Forum_Users_EnableDefaultPostNotify] DEFAULT ((1)),
[StartBanDate] [datetime] NULL
) ON [PRIMARY]

GO
Uses
Used By