Tables [dbo].[ActionsHistory]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created1:20:01 AM Thursday, March 21, 2019
Last Modified1:20:01 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_ActionsHistory_ID: IDIDint4
False
1 - 1
AccountIDint4
False
ActionResultsmallint2
False
ActionDefIDint4
True
Datedatetime8
False
Succeededbit1
False
Statusnvarchar(1024)2048
True
KeyNameKey ColumnsUnique
Cluster Primary Key PK_ActionsHistory_ID: IDPK_ActionsHistory_IDID
True
CREATE TABLE [dbo].[ActionsHistory]
(
[ID] [int] NOT NULL IDENTITY(1, 1),
[AccountID] [int] NOT NULL,
[ActionResult] [smallint] NOT NULL,
[ActionDefID] [int] NULL,
[Date] [datetime] NOT NULL,
[Succeeded] [bit] NOT NULL,
[Status] [nvarchar] (1024) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ActionsHistory] ADD CONSTRAINT [PK_ActionsHistory_ID] PRIMARY KEY CLUSTERED  ([ID]) ON [PRIMARY]
GO