Tables [dbo].[ci_wf_templates]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count2
Created11:07:06 AM Wednesday, March 07, 2007
Last Modified9:08:46 PM Friday, December 05, 2008
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key XPKci_wf_templates: ididint4
No
Indexes ci_wf_templates_x1: wf_namewf_namenvarchar(255)510
Yes
wf_descriptionnvarchar(255)510
Yes
Indexes ci_wf_templates_x0: is_defaultis_defaultint4
Yes
last_mod_dtint4
Yes
last_mod_bybinary(16)16
Yes
Indexes ci_wf_templates_x2: tenanttenantbinary(16)16
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKci_wf_templates: idXPKci_wf_templatesid
Yes
ci_wf_templates_x1wf_name
Yes
ci_wf_templates_x0is_default
ci_wf_templates_x2tenant
Permissions
TypeActionOwning Principal
GrantDeleteservice_desk_admin_group
GrantInsertservice_desk_admin_group
GrantSelectservice_desk_admin_group
GrantUpdateservice_desk_admin_group
SQL Script
CREATE TABLE [dbo].[ci_wf_templates]
(
[id] [int] NOT NULL,
[wf_name] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[wf_description] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[is_default] [int] NULL,
[last_mod_dt] [int] NULL,
[last_mod_by] [binary] (16) NULL,
[tenant] [binary] (16) NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ci_wf_templates] ADD CONSTRAINT [XPKci_wf_templates] PRIMARY KEY CLUSTERED ([id]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [ci_wf_templates_x0] ON [dbo].[ci_wf_templates] ([is_default]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [ci_wf_templates_x2] ON [dbo].[ci_wf_templates] ([tenant]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [ci_wf_templates_x1] ON [dbo].[ci_wf_templates] ([wf_name]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ci_wf_templates] TO [service_desk_admin_group]
GRANT INSERT ON  [dbo].[ci_wf_templates] TO [service_desk_admin_group]
GRANT DELETE ON  [dbo].[ci_wf_templates] TO [service_desk_admin_group]
GRANT UPDATE ON  [dbo].[ci_wf_templates] TO [service_desk_admin_group]
GO
Uses