From c9ccf1852deefcf0c369884fb634234aff3168d2 Mon Sep 17 00:00:00 2001 From: "jhejda@wmpromus.com" Date: Thu, 23 May 2019 09:12:07 +0200 Subject: [PATCH] sql --- .../manifests/centraladministrationdbsetup.pp | 44 + modules/sqlserver_install/manifests/init.pp | 39 + .../sqlserver_install/manifests/sqlserver.pp | 105 + .../manifests/wbapplicationdbsetup.pp | 60 + .../templates/old/script_central.sql.erb | 166 + .../templates/old/script_walls.sql.erb | 5821 +++++++++++++++++ .../templates/script_central.sql.erb | 166 + .../templates/script_central_data.sql.erb | 26 + .../templates/script_walls.sql.erb | 5821 +++++++++++++++++ .../templates/script_walls_data.sql.erb | 1921 ++++++ .../templates/script_walls_data_old.sql.erb | 294 + .../templates/script_walls_finalizing.sql.erb | 1600 +++++ .../script_walls_preparation.sql.erb | 3898 +++++++++++ .../templates/script_walls_tables.sql.erb | 2126 ++++++ 14 files changed, 22087 insertions(+) create mode 100644 modules/sqlserver_install/manifests/centraladministrationdbsetup.pp create mode 100644 modules/sqlserver_install/manifests/init.pp create mode 100644 modules/sqlserver_install/manifests/sqlserver.pp create mode 100644 modules/sqlserver_install/manifests/wbapplicationdbsetup.pp create mode 100644 modules/sqlserver_install/templates/old/script_central.sql.erb create mode 100644 modules/sqlserver_install/templates/old/script_walls.sql.erb create mode 100644 modules/sqlserver_install/templates/script_central.sql.erb create mode 100644 modules/sqlserver_install/templates/script_central_data.sql.erb create mode 100644 modules/sqlserver_install/templates/script_walls.sql.erb create mode 100644 modules/sqlserver_install/templates/script_walls_data.sql.erb create mode 100644 modules/sqlserver_install/templates/script_walls_data_old.sql.erb create mode 100644 modules/sqlserver_install/templates/script_walls_finalizing.sql.erb create mode 100644 modules/sqlserver_install/templates/script_walls_preparation.sql.erb create mode 100644 modules/sqlserver_install/templates/script_walls_tables.sql.erb diff --git a/modules/sqlserver_install/manifests/centraladministrationdbsetup.pp b/modules/sqlserver_install/manifests/centraladministrationdbsetup.pp new file mode 100644 index 0000000..0e96b84 --- /dev/null +++ b/modules/sqlserver_install/manifests/centraladministrationdbsetup.pp @@ -0,0 +1,44 @@ +class sqlserver_install::centraladministrationdbsetup ( + String $sqlserver = "FCL-PUP-V804", + String $sqlserverinstancename = "MSSQLSERVER", + String $sqlserveradminaccount = "sa", + String $sqlserveradminpassword = "Passw0rd1", + String $webappserver = "FCL-PUP-V805", + String $sqlserverdbname = "CentralAdministration", + String $websitename = "CentralAdministration", + String $wallswebsitename = "WALLSstgSit", + String $apiwebsitename = "APIService", +) { + + ############################################################################ + # Creating Walls Database(s) # + ############################################################################ + + sqlserver::database{ $sqlserverdbname: + instance => $sqlserverinstancename, + require => Sqlserver_instance[$sqlserverinstancename], + } + + ############################################################################ + # Populate Walls Database(s) # + ############################################################################ + + -> file { 'C:\tmp\sqlwallsinstall\script_central.sql': + ensure => file, + content => template("${module_name}/script_central.sql.erb"), + require => File['C:\tmp\sqlwallsinstall'], + } + + -> exec { 'Deploy Central Admin sql database': + command => "Import-Module SqlPs;Invoke-Sqlcmd -ServerInstance ${sqlserver} -username ${sqlserveradminaccount} -Password ${sqlserveradminpassword} -InputFile \"C:\\tmp\\sqlwallsinstall\\script_central.sql\" | out-File -filepath \"C:\\tmp\\sqlwallsinstall\\script_central_output.txt\"", + provider => 'powershell', + #logoutput => true, + onlyif => 'if ((Test-Path c:\tmp\sqlwallsinstall\script_central_output.txt) -ne \'True\') {exit 0} Else {exit 1}', + } + + -> exec { 'sleep before running next script - After Central Administration': + command => 'Start-Sleep -s 30', + provider => 'powershell', + } + +} diff --git a/modules/sqlserver_install/manifests/init.pp b/modules/sqlserver_install/manifests/init.pp new file mode 100644 index 0000000..bc1a873 --- /dev/null +++ b/modules/sqlserver_install/manifests/init.pp @@ -0,0 +1,39 @@ +class sqlserver_install ( + #String $sourcelocation = "\\\\10.160.0.44\\Software\\Microsoft\\SQL Server\\SQL Server 2014", + String $sourcelocation = "\\\\freshfields\\dfs\\FCL\\SQLServerSharedRepository\\INSTALLMEDIA\\SQL 2014\\SQL 2014 - Standard", + String $sqlserver = "FCL-SQL-V358", + String $sqlserverinstancename = "MSSQLSERVER", + Array $sqlserversysadminaccounts = ["Administrator"], + String $sqlserveradminaccount = "sa", + String $sqlserveradminpassword = "Passw0rd1", + String $sqlserverdbname = "WALLSstgSit", + String $sqlserverdbnamecentraladmin = "CentralAdministration", + String $webappserver = "FCL-WEB-V358", + String $wbapplicationwebsitename = "walls", +) { + + class { 'sqlserver_install::sqlserver': + sourcelocation => $sourcelocation, + sqlserver => $sqlserver, + sqlserverinstancename => $sqlserverinstancename, + sqlserversysadminaccounts => $sqlserversysadminaccounts, + sqlserveradminaccount => $sqlserveradminaccount, + sqlserveradminpassword => $sqlserveradminpassword, + sqlserverdbname => $sqlserverdbname, + } + + #-> class { 'sqlserver_install::centraladministrationdbsetup': + # sqlserver => $sqlserver, + # sqlserveradminaccount => $sqlserveradminaccount, + # sqlserveradminpassword => $sqlserveradminpassword, + # sqlserverdbnamecentraladmin => $sqlserverdbnamecentraladmin, + #} + + #-> class { 'sqlserver_install::wbapplicationdbsetup': + # sqlserver => $sqlserver, + # sqlserveradminaccount => $sqlserveradminaccount, + # sqlserveradminpassword => $sqlserveradminpassword, + # sqlserverdbname => $sqlserverdbname, + #} + +} diff --git a/modules/sqlserver_install/manifests/sqlserver.pp b/modules/sqlserver_install/manifests/sqlserver.pp new file mode 100644 index 0000000..9451673 --- /dev/null +++ b/modules/sqlserver_install/manifests/sqlserver.pp @@ -0,0 +1,105 @@ +class sqlserver_install::sqlserver ( + #String $sourcelocation = "\\\\freshfields\\dfs\\FCL\\SQLServerSharedRepository\\INSTALLMEDIA\\SQL 2014\\SQL 2014 - Standard", + #String $sourcelocation = "C:\\SQL 2014 - Standard", + String $sourcelocation = "\\\\10.160.0.44\\Software\\Microsoft\\SQL Server\\SQL Server 2014", + String $sqlserver = "FCL-PUP-V804", + String $sqlserverinstancename = "MSSQLSERVER", + Array $sqlserversysadminaccounts = ["Administrator"], + String $sqlserveradminaccount = "sa", + String $sqlserveradminpassword = "Passw0rd1", + String $sqlserverwallsuser = "sa-app-wb-stgsit", + String $sqlserverwallspassword = "nJTv5GrKkpsWFsUp9v", +) { + + ############################################################################ + # Installing SQL Server pre-requisites # + ############################################################################ + + include chocolatey + + reboot { 'reboot_powershell': + when => pending, + timeout => 15, + } + + package { 'dotnet4.5': + ensure => latest, + provider => 'chocolatey', + } + + package { 'powershell': + ensure => installed, + provider => 'chocolatey', + require => Package['dotnet4.5'], + notify => Reboot['reboot_powershell'], + } + + package { 'sql2014-powershell': + ensure => installed, + provider => 'chocolatey', + require => Package['powershell'], + } + + dsc_windowsfeature { 'NET Framework 3.5': + dsc_ensure => 'present', + dsc_name => 'NET-Framework-Features', + require => Package['powershell'], + } + + ############################################################################ + # Installing and configuring SQL Server # + ############################################################################ + + file { 'C:\tmp': + ensure => directory, + path => 'C:\tmp' + } + + file { 'C:\tmp\sqlwallsinstall': + ensure => directory, + require => File['C:\tmp'], + } + + file { 'C:\Program Files\Microsoft SQL Server': + ensure => directory, + } + + file { 'C:\Program Files (x86)\Microsoft SQL Server': + ensure => directory, + } + + file { 'C:\MSSQLSERVER': + ensure => directory, + } + + sqlserver_instance { $sqlserverinstancename: + source => $sourcelocation, + features => ['SQLEngine'], + security_mode => 'SQL', + #sql_sysadmin_accounts => $sqlserversysadminaccounts, + sa_pwd => $sqlserveradminpassword, + sql_sysadmin_accounts => $sqlserversysadminaccounts, #[$facts['id']], + install_switches => { + 'TCPENABLED' => 1, + 'SQLBACKUPDIR' => 'C:\\MSSQLSERVER\\backupdir', + 'SQLTEMPDBDIR' => 'C:\\MSSQLSERVER\\tempdbdir', + 'INSTALLSQLDATADIR' => 'C:\\MSSQLSERVER\\datadir', + 'INSTANCEDIR' => 'C:\\Program Files\\Microsoft SQL Server', + 'INSTALLSHAREDDIR' => 'C:\\Program Files\\Microsoft SQL Server', + 'INSTALLSHAREDWOWDIR' => 'C:\\Program Files (x86)\\Microsoft SQL Server' + }, + require => [ File['C:\Program Files\Microsoft SQL Server'], File['C:\Program Files (x86)\Microsoft SQL Server'], File['C:\MSSQLSERVER'], Dsc_windowsfeature['NET Framework 3.5'] ], + } + + -> sqlserver::config { $sqlserverinstancename: + admin_login_type => 'SQL_LOGIN', + admin_user => $sqlserveradminaccount, + admin_pass => $sqlserveradminpassword, + } + + -> sqlserver::login{ $sqlserverwallsuser: + instance => $sqlserverinstancename, + password => $sqlserverwallspassword, + } + +} diff --git a/modules/sqlserver_install/manifests/wbapplicationdbsetup.pp b/modules/sqlserver_install/manifests/wbapplicationdbsetup.pp new file mode 100644 index 0000000..767ae9e --- /dev/null +++ b/modules/sqlserver_install/manifests/wbapplicationdbsetup.pp @@ -0,0 +1,60 @@ +class sqlserver_install::wbapplicationdbsetup ( + String $sqlserver = "FCL-PUP-V804", + String $sqlserverinstancename = "MSSQLSERVER", + String $sqlserveradminaccount = "sa", + String $sqlserveradminpassword = "Passw0rd1", + String $webappserver = "FCL-PUP-V805", + String $sqlserverdbname = "WALLSstgSit", + String $websitename = "WALLSstgSit", +) { + + ############################################################################ + # Creating Walls Database(s) # + ############################################################################ + + sqlserver::database{ $sqlserverdbname: + instance => $sqlserverinstancename, + require => Sqlserver_instance[$sqlserverinstancename], + } + + ############################################################################ + # Populate Walls Database(s) # + ############################################################################ + + -> file { 'C:\tmp\sqlwallsinstall\script_walls_preparation.sql': + ensure => file, + content => template("${module_name}/script_walls_preparation.sql.erb"), + require => File['C:\tmp\sqlwallsinstall'], + } + + -> exec { 'Deploy wbapplicationsetup sql database - Preparation': + command => "Import-Module SqlPs;Invoke-Sqlcmd -ServerInstance ${sqlserver} -username ${sqlserveradminaccount} -Password ${sqlserveradminpassword} -InputFile \"C:\\tmp\\sqlwallsinstall\\script_walls_preparation.sql\" | out-File -filepath \"C:\\tmp\\sqlwallsinstall\\script_walls_preparation_output.txt\"", + provider => 'powershell', + #logoutput => 'on_failure', + onlyif => 'if ((Test-Path c:\tmp\sqlwallsinstall\script_walls_preparation_output.txt) -ne \'True\') {exit 0} Else {exit 1}', + } + + -> exec { 'sleep before running next script - After Walls Preparation': + command => 'Start-Sleep -s 60', + provider => 'powershell', + } + + -> file { 'C:\tmp\sqlwallsinstall\script_walls_data.sql': + ensure => file, + content => template("${module_name}/script_walls_data.sql.erb"), + require => File['C:\tmp\sqlwallsinstall'], + } + + -> exec { 'Deploy wbapplicationsetup sql database - Data': + command => "Import-Module SqlPs;Invoke-Sqlcmd -ServerInstance ${sqlserver} -username ${sqlserveradminaccount} -Password ${sqlserveradminpassword} -InputFile \"C:\\tmp\\sqlwallsinstall\\script_walls_data.sql\" | out-File -filepath \"C:\\tmp\\sqlwallsinstall\\script_walls_data_output.txt\"", + provider => 'powershell', + #logoutput => 'on_failure', + onlyif => 'if ((Test-Path c:\tmp\sqlwallsinstall\script_walls_data_output.txt) -ne \'True\') {exit 0} Else {exit 1}', + } + + -> exec { 'sleep before running next script - After Walls Data': + command => 'Start-Sleep -s 60', + provider => 'powershell', + } + +} diff --git a/modules/sqlserver_install/templates/old/script_central.sql.erb b/modules/sqlserver_install/templates/old/script_central.sql.erb new file mode 100644 index 0000000..2afeae5 --- /dev/null +++ b/modules/sqlserver_install/templates/old/script_central.sql.erb @@ -0,0 +1,166 @@ +USE [master] +GO +/****** Object: Database [<%=@sqlserverdbnamecentraladmin%>] Script Date: 2/8/2018 10:52:22 AM ******/ +--CREATE DATABASE [<%=@sqlserverdbnamecentraladmin%>] +-- CONTAINMENT = NONE +-- ON PRIMARY +--( NAME = N'CentralAdministration', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\CentralAdministration.mdf' , SIZE = 3264KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB ) +-- LOG ON +--( NAME = N'CentralAdministration_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\CentralAdministration_log.ldf' , SIZE = 816KB , MAXSIZE = 2048GB , FILEGROWTH = 10%) +--GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET COMPATIBILITY_LEVEL = 120 +GO +IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')) +begin +EXEC [<%=@sqlserverdbnamecentraladmin%>].[dbo].[sp_fulltext_database] @action = 'enable' +end +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ANSI_NULL_DEFAULT OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ANSI_NULLS OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ANSI_PADDING OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ANSI_WARNINGS OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ARITHABORT OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET AUTO_CLOSE OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET AUTO_SHRINK OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET AUTO_UPDATE_STATISTICS ON +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET CURSOR_CLOSE_ON_COMMIT OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET CURSOR_DEFAULT GLOBAL +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET CONCAT_NULL_YIELDS_NULL OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET NUMERIC_ROUNDABORT OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET QUOTED_IDENTIFIER OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET RECURSIVE_TRIGGERS OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ENABLE_BROKER +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET AUTO_UPDATE_STATISTICS_ASYNC OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET DATE_CORRELATION_OPTIMIZATION OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET TRUSTWORTHY OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ALLOW_SNAPSHOT_ISOLATION OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET PARAMETERIZATION SIMPLE +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET READ_COMMITTED_SNAPSHOT OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET HONOR_BROKER_PRIORITY OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET RECOVERY FULL +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET MULTI_USER +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET PAGE_VERIFY CHECKSUM +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET DB_CHAINING OFF +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF ) +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET TARGET_RECOVERY_TIME = 0 SECONDS +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET DELAYED_DURABILITY = DISABLED +GO +EXEC sys.sp_db_vardecimal_storage_format N'<%=@sqlserverdbnamecentraladmin%>', N'ON' +GO +USE [<%=@sqlserverdbnamecentraladmin%>] +GO +/****** Object: Schema [cac] Script Date: 2/8/2018 10:52:23 AM ******/ +CREATE SCHEMA [cac] +GO +/****** Object: Table [cac].[Applications] Script Date: 2/8/2018 10:52:23 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [cac].[Applications]( + [ApplicationId] [int] IDENTITY(1,1) NOT NULL, + [ApplicationName] [nvarchar](256) NOT NULL, + [ApplicationType] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [DatabaseName] [nvarchar](256) NOT NULL, + [ServerName] [nvarchar](256) NOT NULL, + [UserName] [nvarchar](256) NOT NULL, + [UserPassword] [nvarchar](256) NOT NULL, + [UseWindowsAuthentication] [bit] NOT NULL, + [ApplicationUrl] [nvarchar](1000) NOT NULL, + [ApiServiceUrl] [nvarchar](1000) NULL, +PRIMARY KEY CLUSTERED +( + [ApplicationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [cac].[ApplicationUsers] Script Date: 2/8/2018 10:52:23 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [cac].[ApplicationUsers]( + [UserId] [int] IDENTITY(1,1) NOT NULL, + [Login] [nvarchar](50) NOT NULL, + [Password] [nvarchar](50) NOT NULL, + [Email] [nvarchar](100) NULL, + [IsEnabled] [bit] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [LastLogin] [datetime] NULL, + [Name] [nvarchar](100) NULL, + [IsDeleted] [bit] NOT NULL, +PRIMARY KEY CLUSTERED +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [cac].[Version] Script Date: 2/8/2018 10:52:23 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [cac].[Version]( + [AppVersion] [varchar](50) NULL +) ON [PRIMARY] +GO +SET IDENTITY_INSERT [cac].[ApplicationUsers] ON + +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (1, N'admin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'', 1, CAST(N'2018-02-05T11:46:11.490' AS DateTime), CAST(N'2018-02-05T11:46:11.490' AS DateTime), NULL, N'Administrator', 0) +SET IDENTITY_INSERT [cac].[ApplicationUsers] OFF +INSERT [cac].[Version] ([AppVersion]) VALUES (N'6.2.2002.5') +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ApplicationNameUnique] Script Date: 2/8/2018 10:52:23 AM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_ApplicationNameUnique] ON [cac].[Applications] +( + [ApplicationName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +ALTER TABLE [cac].[Applications] ADD DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [cac].[Applications] ADD DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT ((0)) FOR [IsDeleted] +GO +USE [master] +GO +ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET READ_WRITE +GO diff --git a/modules/sqlserver_install/templates/old/script_walls.sql.erb b/modules/sqlserver_install/templates/old/script_walls.sql.erb new file mode 100644 index 0000000..fa6030d --- /dev/null +++ b/modules/sqlserver_install/templates/old/script_walls.sql.erb @@ -0,0 +1,5821 @@ +USE [master] +GO +/****** Object: Database [<%=@sqlserverdbname%>] Script Date: 2/8/2018 10:53:14 AM ******/ +--CREATE DATABASE [<%=@sqlserverdbname%>] +-- CONTAINMENT = NONE +-- ON PRIMARY +--( NAME = N'WALLSstgSit', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\WALLSstgSit.mdf' , SIZE = 6336KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB ) +-- LOG ON +--( NAME = N'WALLSstgSit_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\WALLSstgSit_log.ldf' , SIZE = 36288KB , MAXSIZE = 2048GB , FILEGROWTH = 10%) +--GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET COMPATIBILITY_LEVEL = 100 +GO +IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')) +begin +EXEC [<%=@sqlserverdbname%>].[dbo].[sp_fulltext_database] @action = 'enable' +end +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_NULL_DEFAULT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_NULLS OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_PADDING OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_WARNINGS OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ARITHABORT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_CLOSE OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_SHRINK OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_UPDATE_STATISTICS ON +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET CURSOR_CLOSE_ON_COMMIT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET CURSOR_DEFAULT GLOBAL +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET CONCAT_NULL_YIELDS_NULL OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET NUMERIC_ROUNDABORT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET QUOTED_IDENTIFIER OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET RECURSIVE_TRIGGERS OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ENABLE_BROKER +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_UPDATE_STATISTICS_ASYNC OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET DATE_CORRELATION_OPTIMIZATION OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET TRUSTWORTHY OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ALLOW_SNAPSHOT_ISOLATION OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET PARAMETERIZATION SIMPLE +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET READ_COMMITTED_SNAPSHOT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET HONOR_BROKER_PRIORITY OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET RECOVERY FULL +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET MULTI_USER +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET PAGE_VERIFY CHECKSUM +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET DB_CHAINING OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF ) +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET TARGET_RECOVERY_TIME = 0 SECONDS +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET DELAYED_DURABILITY = DISABLED +GO +EXEC sys.sp_db_vardecimal_storage_format N'<%=@sqlserverdbname%>', N'ON' +GO +USE [<%=@sqlserverdbname%>] +GO +/****** Object: FullTextCatalog [WallsFTSCatalog] Script Date: 2/8/2018 10:53:14 AM ******/ +CREATE FULLTEXT CATALOG [WallsFTSCatalog] WITH ACCENT_SENSITIVITY = ON +GO +/****** Object: UserDefinedFunction [dbo].[LogSearch] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + +CREATE FUNCTION [dbo].[LogSearch] + (@column NVARCHAR(4000), @searchText NVARCHAR(4000)) +RETURNS @tbl TABLE (ErrorLogId int NOT NULL) AS + BEGIN + IF (@column = 'LogException') + BEGIN + INSERT INTO @tbl SELECT [ErrorLogId] + FROM ErrorLog WHERE CONTAINS(ErrorLog.LogException, @searchText) + END + ELSE IF (@column = 'LogMessage') + BEGIN + INSERT INTO @tbl SELECT [ErrorLogId] + FROM ErrorLog WHERE CONTAINS(ErrorLog.LogMessage, @searchText) + END + ELSE + BEGIN + INSERT INTO @tbl SELECT [ErrorLogId] + FROM ErrorLog WHERE CONTAINS(ErrorLog.*, @searchText) + END + RETURN + END +GO +/****** Object: UserDefinedFunction [dbo].[SplitUdf] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + +-- ============================================= +-- Description: Splits the @sourceString by the delimiter (currently char(13) + char(10)) +-- Parameter: @sourceString - The input string to split +-- Parameter: @udfIsDate - Indicates, whether the @sourceString is of date type. This causes an additional check. +-- Returns: DataTable with values +-- ============================================= +CREATE FUNCTION [dbo].[SplitUdf] (@sourceString nvarchar(200), @udfIsDate bit) +RETURNS @tbl TABLE (Value nvarchar(200) NULL) AS +BEGIN + DECLARE @pos int, + @nextpos int, + @valuelen int, + @delimiterlen int, + @offset int, + @delimiter nchar(2), + @value nvarchar(50) + + SELECT @pos = 0, + @nextpos = 1, + @delimiter = char(13) + char(10), -- the current multi-valued UDF delimiter + @delimiterlen = 2 -- the length of the current delimiter + + SELECT @value = LTRIM(RTRIM(@sourceString)) + -- if the source string contains the delimiter, split the string + IF (@sourceString LIKE '%' + @delimiter + '%') + BEGIN + WHILE @nextpos > 0 + BEGIN + SELECT @offset = CASE WHEN @pos > 0 THEN @delimiterlen ELSE 1 END + SELECT @nextpos = CHARINDEX(@delimiter, @sourceString, @pos + 1) + SELECT @valuelen = CASE WHEN @nextpos > 0 THEN @nextpos ELSE LEN(@sourceString) + 1 END - @pos - @offset + SELECT @value = LTRIM(RTRIM(SUBSTRING(@sourceString, @pos + @offset, @valuelen))) + IF (LEN(@value) > 0) + BEGIN + -- if UDF is of date type, check, whether @value is date + IF (@udfIsDate > 0) + BEGIN + IF (ISDATE(@value) > 0) + BEGIN + INSERT INTO @tbl (Value) VALUES (@value) + END + END + ELSE + INSERT INTO @tbl (Value) VALUES (@value) + END + SELECT @pos = @nextpos + END + RETURN + END + -- if the source string does not contain the delimiter, just return it + ELSE IF (LEN(@value) > 0) + BEGIN + -- if UDF is of date type, check, whether @value is date + IF (@udfIsDate > 0) + BEGIN + IF (ISDATE(@value) > 0) + BEGIN + INSERT INTO @tbl (Value) VALUES (@value) + END + END + ELSE + INSERT INTO @tbl (Value) VALUES (@value) + END + RETURN +END +GO +/****** Object: Table [dbo].[AccessHistory] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AccessHistory]( + [AccessHistoryId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [WallSideId] [int] NOT NULL, + [UserEntityId] [int] NULL, + [ActivityType] [nvarchar](10) NOT NULL, + [IsPending] [bit] NOT NULL, + CONSTRAINT [PK_AccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Activities] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Activities]( + [ActivityId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryTypeId] [int] NOT NULL, + [ActivityName] [nvarchar](255) NOT NULL, + [ActivityRemoteLabel] [nvarchar](255) NOT NULL, + [ActivityCategoryId] [int] NOT NULL, + CONSTRAINT [PK_Activities] PRIMARY KEY CLUSTERED +( + [ActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ActivityCategories] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ActivityCategories]( + [ActivityCategoryId] [int] IDENTITY(1,1) NOT NULL, + [ActivityCategoryName] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_ActivityCategories] PRIMARY KEY CLUSTERED +( + [ActivityCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[AlertDetails] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AlertDetails]( + [AlertDetailId] [int] IDENTITY(1,1) NOT NULL, + [AlertId] [int] NOT NULL, + [ActivityRemoteLabel] [nvarchar](255) NULL, + [ActivityName] [nvarchar](255) NOT NULL, + [RepositoryRemoteLabel] [nvarchar](255) NOT NULL, + [RepositoryName] [nvarchar](255) NOT NULL, + [RemoteObjectId] [nvarchar](100) NULL, + [RemoteObjectName] [nvarchar](255) NULL, + [RemoteObjectType] [nvarchar](255) NULL, + [RemoteObjectOwner] [nvarchar](255) NULL, + [ClientName] [nvarchar](255) NULL, + [MatterName] [nvarchar](255) NULL, + [EventTime] [datetime] NOT NULL, + [Custom1] [nvarchar](255) NULL, + [Custom2] [nvarchar](255) NULL, + [Custom3] [nvarchar](255) NULL, + [Custom4] [nvarchar](255) NULL, + [Custom5] [nvarchar](255) NULL, + [Created] [datetime] NOT NULL, + [RemoteObjectVersion] [nvarchar](10) NULL, + [ClientId] [nvarchar](100) NULL, + [MatterId] [nvarchar](100) NULL, + CONSTRAINT [PK_TrackerAlertDetails] PRIMARY KEY CLUSTERED +( + [AlertDetailId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[AlertDetailsCustomFields] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AlertDetailsCustomFields]( + [FieldId] [nvarchar](255) NOT NULL, + [FieldName] [varchar](50) NOT NULL, + [IsEnabled] [bit] NOT NULL, + [AlertDetailsCustomFieldId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryTypeId] [int] NULL, + CONSTRAINT [PK_CustomFields] PRIMARY KEY CLUSTERED +( + [AlertDetailsCustomFieldId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Alerts] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Alerts]( + [AlertId] [int] IDENTITY(1,1) NOT NULL, + [TrackerExecutionId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [UserName] [nvarchar](255) NULL, + [ActivityCount] [int] NOT NULL, + [StatisticsValue] [decimal](10, 2) NULL, + CONSTRAINT [PK_TrackerAlerts] PRIMARY KEY CLUSTERED +( + [AlertId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationRolesAT] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationRolesAT]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleName] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_ApplicationRolesAT] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationRolesMTM] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationRolesMTM]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleName] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_ApplicationRolesMTM] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationRolesWB] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationRolesWB]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleName] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_Roles] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationUsers] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationUsers]( + [UserId] [int] IDENTITY(1,1) NOT NULL, + [WBRoleId] [int] NULL, + [UserName] [nvarchar](50) NOT NULL, + [Password] [nvarchar](50) NOT NULL, + [Name] [nvarchar](100) NULL, + [Email] [nvarchar](100) NULL, + [IsEnabled] [bit] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [LastLogin] [datetime] NULL, + [MTMRoleId] [int] NULL, + [ATRoleId] [int] NULL, + [InsidersModuleAccess] [bit] NOT NULL, + CONSTRAINT [PK_ApplicationUsers] PRIMARY KEY CLUSTERED +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Attachments] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Attachments]( + [AttachmentId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [FileName] [nvarchar](255) NOT NULL, + [FileSize] [int] NOT NULL, + [FileContentType] [nvarchar](75) NULL, + [FileContent] [image] NULL, + [CreatorId] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_Attachments] PRIMARY KEY CLUSTERED +( + [AttachmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[AttorneyAcknowledgments] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AttorneyAcknowledgments]( + [AcknowledgmentId] [int] IDENTITY(1,1) NOT NULL, + [WallSideId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [isAcknowledged] [bit] NOT NULL, + [DateOfAcceptance] [datetime] NULL, + [DateOfNotice] [datetime] NULL, + [isArchived] [bit] NOT NULL, + CONSTRAINT [PK_AttorneyAcknowledgments] PRIMARY KEY CLUSTERED +( + [AcknowledgmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[CommonTerms] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[CommonTerms]( + [OriginalValue] [nvarchar](50) NOT NULL, + [ReplacedValue] [nvarchar](50) NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Config] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Config]( + [ConfigId] [int] IDENTITY(1,1) NOT NULL, + [ConfigVariable] [nvarchar](255) NOT NULL, + [ConfigValue1] [nvarchar](max) NULL, + [ConfigValue2] [nvarchar](4000) NULL, + [Category] [nvarchar](64) NULL, + [ConfigType] [nvarchar](50) NULL, + [MetaData] [nvarchar](max) NULL, + [SubCategoryOf] [nvarchar](255) NULL, + CONSTRAINT [PK_Config] PRIMARY KEY CLUSTERED +( + [ConfigId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[DefaultNotifications] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DefaultNotifications]( + [NotificationId] [int] NOT NULL, + [WallAccessTypeId] [int] NOT NULL, + CONSTRAINT [PK_DefaultNotifications] PRIMARY KEY CLUSTERED +( + [NotificationId] ASC, + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DefaultTrackers] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DefaultTrackers]( + [TrackerId] [int] NOT NULL, + [WallAccessTypeId] [int] NOT NULL, + CONSTRAINT [PK_DefaultTrackers] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC, + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DigestNotificationAttachments] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DigestNotificationAttachments]( + [NotificationAttachmentId] [int] NOT NULL, + [DigestNotificationId] [bigint] NOT NULL, + CONSTRAINT [PK_DigestNotificationAttachments] PRIMARY KEY CLUSTERED +( + [NotificationAttachmentId] ASC, + [DigestNotificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DigestNotificationContent] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DigestNotificationContent]( + [DigestNotificationContentId] [int] IDENTITY(1,1) NOT NULL, + [NotificationText] [ntext] NULL, + [Subject] [nvarchar](1000) NULL, + [From] [nvarchar](1000) NULL, + CONSTRAINT [PK_DigestNotificationInfo] PRIMARY KEY CLUSTERED +( + [DigestNotificationContentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[DigestNotifications] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DigestNotifications]( + [DigestNotificationId] [bigint] IDENTITY(1,1) NOT NULL, + [NotificationId] [int] NOT NULL, + [EmailAddress] [nvarchar](50) NULL, + [CreatedDate] [datetime] NOT NULL, + [DigestNotificationContentId] [int] NOT NULL, + [NotificationHistoryId] [int] NULL, + CONSTRAINT [PK_DigestNotifications] PRIMARY KEY CLUSTERED +( + [DigestNotificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DynamicEntityGroupDefinitions] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DynamicEntityGroupDefinitions]( + [EntityId] [int] NOT NULL, + [DefinitionXml] [nvarchar](4000) NOT NULL, + [CreatedBy] [int] NULL, + CONSTRAINT [PK_DDynamicEntityGroupDefinitions] PRIMARY KEY CLUSTERED +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DynamicEntityGroupExceptions] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DynamicEntityGroupExceptions]( + [DynamicGroupEntityId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [CreatorId] [int] NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_DynamicEntityGroupExceptions] PRIMARY KEY CLUSTERED +( + [DynamicGroupEntityId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[Entities] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Entities]( + [EntityId] [int] IDENTITY(1,1) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [EntityRemoteSystemId] [nvarchar](100) NULL, + [EntityDescription] [nvarchar](255) NULL, + [ParentTypeId] [int] NULL, + [ParentRemoteSystemId] [nvarchar](100) NULL, + [ParentDescription] [nvarchar](255) NULL, + [EntityCustomData] [nvarchar](255) NULL, + [RecordsSystemId] [nvarchar](100) NULL, + [FinancialSystemId] [nvarchar](100) NULL, + [TimeEntrySystemId] [nvarchar](100) NULL, + [WindowsNetworkLogon] [nvarchar](100) NULL, + [CustomField1] [nvarchar](1000) NULL, + [CustomField2] [nvarchar](1000) NULL, + [CustomField3] [nvarchar](1000) NULL, + [CustomField4] [nvarchar](1000) NULL, + [CustomField5] [nvarchar](1000) NULL, + [CustomField6] [nvarchar](1000) NULL, + [CustomField7] [nvarchar](1000) NULL, + [CustomField8] [nvarchar](1000) NULL, + [CustomField9] [nvarchar](1000) NULL, + [CustomField10] [nvarchar](1000) NULL, + [IsEnabledForSearch] [bit] NOT NULL, + [Modified] [datetime] NULL, + [Created] [datetime] NULL, + [MatterOpenStatus] [bit] NULL, + [MatterConfidentialityStatus] [nvarchar](255) NULL, + [MatterTeamEntityId] [int] NULL, + [CustomField11] [nvarchar](1000) NULL, + [CustomField12] [nvarchar](1000) NULL, + [CustomField13] [nvarchar](1000) NULL, + [CustomField14] [nvarchar](1000) NULL, + [CustomField15] [nvarchar](1000) NULL, + [CustomField16] [nvarchar](1000) NULL, + [CustomField17] [nvarchar](1000) NULL, + [CustomField18] [nvarchar](1000) NULL, + [CustomField19] [nvarchar](1000) NULL, + [CustomField20] [nvarchar](1000) NULL, + [CustomField21] [nvarchar](1000) NULL, + [CustomField22] [nvarchar](1000) NULL, + [CustomField23] [nvarchar](1000) NULL, + [CustomField24] [nvarchar](1000) NULL, + [CustomField25] [nvarchar](1000) NULL, + [CustomField26] [nvarchar](1000) NULL, + [CustomField27] [nvarchar](1000) NULL, + [CustomField28] [nvarchar](1000) NULL, + [CustomField29] [nvarchar](1000) NULL, + [CustomField30] [nvarchar](1000) NULL, + [EntityDisplayId] [nvarchar](100) NULL, + [CrmSystemId] [nvarchar](100) NULL, + [TimeBuilderSystemId] [nvarchar](100) NULL, + [FileshareRemoteSystemId] [nvarchar](100) NULL, + [OpenSystemId] [nvarchar](100) NULL, + [NotificationRoleId] [int] NOT NULL, + CONSTRAINT [PK_Entities] PRIMARY KEY CLUSTERED +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntitiesMatterTeamFields] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntitiesMatterTeamFields]( + [MatterTeamEntityId] [int] NOT NULL, + [IsSelfMaintained] [bit] NOT NULL, + [SelfMaintainingMinHours] [int] NULL, + [SelfMaintainingPeriod] [int] NULL, + [SelfMaintainingPeriodUnit] [nvarchar](32) NULL, + [IsRelationshipPaired] [bit] NOT NULL, + [SelfMaintainingPeriodStart] [datetime] NULL, + [SelfMaintainingPeriodEnd] [datetime] NULL, + CONSTRAINT [PK_EntitiesMatterTeamFields] PRIMARY KEY CLUSTERED +( + [MatterTeamEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntitiesUserFields] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntitiesUserFields]( + [UserEntityId] [int] NOT NULL, + [IsExceptedFromActiveDirectoryGroups] [bit] NOT NULL, + [IsExceptedFromJoiningMatterTeam] [bit] NOT NULL, + CONSTRAINT [PK_EntitiesUserFields] PRIMARY KEY CLUSTERED +( + [UserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityCustomComboValues] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityCustomComboValues]( + [Field] [nvarchar](32) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [Value] [nvarchar](200) NOT NULL, + CONSTRAINT [PK_EntityCustomComboValues] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [EntityTypeId] ASC, + [Value] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityCustomFieldConfig] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityCustomFieldConfig]( + [Field] [nvarchar](32) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [DisplayName] [nvarchar](64) NOT NULL, + [Type] [nvarchar](32) NOT NULL, + [Description] [nvarchar](100) NOT NULL, + [IsIncludedInNotifications] [bit] NOT NULL, + [IsIncludedInEntityTooltip] [bit] NOT NULL, + [IsMultiValued] [bit] NOT NULL, + [IsIncludedInExtendedValidation] [bit] NOT NULL, + [IsIncludedInGeneralInformation] [bit] NOT NULL, + [IsConfidential] [bit] NOT NULL, + [DateTimeFormat] [nvarchar](50) NULL, + CONSTRAINT [PK_EntityCustomFieldConfig] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityKeyMap] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityKeyMap]( + [EntityId] [int] NOT NULL, + [ParentEntityId] [int] NOT NULL, + [RoleId] [int] NULL, + [Reason] [nvarchar](250) NULL, + [ExpirationDate] [datetime] NULL, + [IsActive] [bit] NOT NULL, + [DemotionRoleId] [int] NULL, + [IsMTHistoryConflict] [bit] NOT NULL, + CONSTRAINT [PK_EntityKeyMap] PRIMARY KEY CLUSTERED +( + [EntityId] ASC, + [ParentEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityRelationshipTypes] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityRelationshipTypes]( + [EntityRelationshipTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](200) NOT NULL, + [PrimaryType] [nvarchar](100) NOT NULL, + [SubordinateType] [nvarchar](100) NOT NULL, + [IsDirectRelationshipValidated] [bit] NOT NULL, + [IsSharedRelationshipValidated] [bit] NOT NULL, + CONSTRAINT [PK_EntityRelationshipTypes] PRIMARY KEY CLUSTERED +( + [EntityRelationshipTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityToEntityRelationships] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityToEntityRelationships]( + [EntityRelationshipTypeId] [int] NOT NULL, + [PrimaryEntityId] [int] NOT NULL, + [SubordinateEntityId] [int] NOT NULL, + CONSTRAINT [PK_EntityToEntityRelationships] PRIMARY KEY CLUSTERED +( + [EntityRelationshipTypeId] ASC, + [PrimaryEntityId] ASC, + [SubordinateEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityTypes] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityTypes]( + [EntityTypeId] [int] IDENTITY(1,1) NOT NULL, + [EntityType] [nvarchar](100) NOT NULL, + [EntityTypePl] [nvarchar](100) NOT NULL, + [IsUserType] [bit] NOT NULL, + CONSTRAINT [PK_EntityTypes] PRIMARY KEY CLUSTERED +( + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ErrorLog] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ErrorLog]( + [ErrorLogId] [int] IDENTITY(1,1) NOT NULL, + [ServiceType] [nvarchar](64) NOT NULL, + [ServiceId] [nvarchar](255) NULL, + [LogLevel] [nvarchar](32) NOT NULL, + [LogMessage] [ntext] NOT NULL, + [LogException] [ntext] NULL, + [Created] [datetime] NOT NULL, + CONSTRAINT [PK_ErrorLog] PRIMARY KEY CLUSTERED +( + [ErrorLogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExtensionQueryResults] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExtensionQueryResults]( + [ExtensionQueryResultId] [int] IDENTITY(1,1) NOT NULL, + [RequestId] [nvarchar](128) NOT NULL, + [ExtensionServiceName] [nvarchar](255) NOT NULL, + [Status] [nvarchar](64) NOT NULL, + [ResultXml] [nvarchar](max) NULL, + [LastUpdateTime] [datetime] NOT NULL, + [Messages] [nvarchar](max) NULL, + CONSTRAINT [PK_ExtensionQueryResults] PRIMARY KEY CLUSTERED +( + [ExtensionQueryResultId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExtensionServiceJobs] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExtensionServiceJobs]( + [ExtensionServiceJobsId] [int] IDENTITY(1,1) NOT NULL, + [ExtensionServiceName] [nvarchar](255) NOT NULL, + [ExtensionType] [nvarchar](64) NULL, + [LibraryName] [nvarchar](128) NULL, + [JobType] [nvarchar](255) NOT NULL, + [JobXML] [ntext] NULL, + [JobState] [nvarchar](32) NOT NULL, + [FinalStatus] [nvarchar](32) NULL, + [Retries] [int] NOT NULL, + [QueueTime] [datetime] NOT NULL, + [StateLastChangedTime] [datetime] NOT NULL, + [StartTime] [datetime] NULL, + [EndTime] [datetime] NULL, + [Messages] [ntext] NULL, + [OperationId] [uniqueidentifier] NULL, + CONSTRAINT [PK_ExtensionServiceJobs] PRIMARY KEY CLUSTERED +( + [ExtensionServiceJobsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExtensionServiceLocks] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExtensionServiceLocks]( + [LockName] [nvarchar](256) NOT NULL, + [LockTime] [datetime] NOT NULL, + CONSTRAINT [PK_ExtensionServiceLocks] PRIMARY KEY CLUSTERED +( + [LockName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExternalUserFields] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExternalUserFields]( + [ExternalUserEntityId] [int] NOT NULL, + [CreatedBy] [int] NOT NULL, + CONSTRAINT [PK_ExternalUserFields] PRIMARY KEY CLUSTERED +( + [ExternalUserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExternalUsersAccessHistory] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExternalUsersAccessHistory]( + [AccessHistoryId] [int] IDENTITY(1,1) NOT NULL, + [ExternalUserEntityId] [int] NOT NULL, + [MatterEntityId] [int] NOT NULL, + [ActivityType] [nvarchar](10) NOT NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityReason] [nvarchar](1000) NULL, + CONSTRAINT [PK_ExternalUsersAccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[FileShareADGroupStatuses] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[FileShareADGroupStatuses]( + [GroupName] [nvarchar](256) NOT NULL, + [LastAccessTime] [datetime] NOT NULL, + [LastModificationTime] [datetime] NULL, + [SecurityId] [varchar](184) NULL, + CONSTRAINT [PK_FileShareADGroupStatuses] PRIMARY KEY CLUSTERED +( + [GroupName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[GlobalExceptions] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[GlobalExceptions]( + [EntityId] [int] NOT NULL, + [CreatorId] [int] NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_GlobalExceptions] PRIMARY KEY CLUSTERED +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[GroupEntityLog] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[GroupEntityLog]( + [LogId] [int] IDENTITY(1,1) NOT NULL, + [User] [nvarchar](255) NOT NULL, + [GroupEntityId] [int] NOT NULL, + [LogMessageType] [nvarchar](50) NOT NULL, + [LogMessage] [ntext] NULL, + [Created] [datetime] NOT NULL, + CONSTRAINT [PK_GroupEntityLog] PRIMARY KEY CLUSTERED +( + [LogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[HiddenMatterTeams] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[HiddenMatterTeams]( + [HiddenMatterTeamId] [int] IDENTITY(1,1) NOT NULL, + [UserId] [int] NOT NULL, + [UserIdType] [nvarchar](10) NOT NULL, + [MatterTeamEntityId] [int] NOT NULL, + CONSTRAINT [PK_HiddenMatterTeams] PRIMARY KEY CLUSTERED +( + [HiddenMatterTeamId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[InsidersReportFields] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[InsidersReportFields]( + [InsidersReportFieldsId] [int] NOT NULL, + [FieldName] [nvarchar](128) NULL, + [FieldType] [nvarchar](255) NOT NULL, + [Description] [nvarchar](255) NOT NULL, + [TableName] [nvarchar](255) NULL, + [ColumnName] [nvarchar](255) NULL, + [EntityTypeId] [int] NULL, + [OrderId] [int] NOT NULL, + [EmptyText] [nvarchar](100) NULL, + [IsHeaderField] [bit] NOT NULL, + [DateTimeFormat] [nvarchar](50) NULL, + [IsPermanentInsiders] [bit] NOT NULL, + CONSTRAINT [PK_InsidersReportFields] PRIMARY KEY CLUSTERED +( + [InsidersReportFieldsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[InsidersReportLogs] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[InsidersReportLogs]( + [InsidersReportLogId] [int] IDENTITY(1,1) NOT NULL, + [ApplicationUserId] [int] NOT NULL, + [MatterEntityId] [int] NULL, + [LogMessage] [nvarchar](max) NOT NULL, + [Created] [datetime] NOT NULL, + CONSTRAINT [PK_InsidersReportLogs] PRIMARY KEY CLUSTERED +( + [InsidersReportLogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[InsidersReports] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[InsidersReports]( + [InsidersReportsId] [int] IDENTITY(1,1) NOT NULL, + [MatterEntityID] [int] NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [LastRun] [datetime] NOT NULL, + [ReportXML] [ntext] NOT NULL, + CONSTRAINT [PK_InsidersReports] PRIMARY KEY CLUSTERED +( + [InsidersReportsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[Log] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Log]( + [LogId] [int] IDENTITY(1,1) NOT NULL, + [UserId] [int] NULL, + [WallId] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [LogMessage] [ntext] NULL, + [LogMessageType] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_Log] PRIMARY KEY CLUSTERED +( + [LogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterAccessHistory] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterAccessHistory]( + [AccessHistoryId] [int] NOT NULL, + [MatterEntityId] [int] NOT NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityReason] [nvarchar](1000) NULL, + [WasAddedBySelfMaintaining] [bit] NOT NULL, + CONSTRAINT [PK_MatterAccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC, + [MatterEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamExceptions] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamExceptions]( + [MatterTeamEntityId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [Creator] [nvarchar](255) NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_MatterTeamExceptions] PRIMARY KEY CLUSTERED +( + [MatterTeamEntityId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamHistories] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamHistories]( + [MatterTeamHistoryId] [int] IDENTITY(1,1) NOT NULL, + [MatterEntityId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [RoleId] [int] NOT NULL, + [Reason] [nvarchar](max) NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityTypeId] [tinyint] NOT NULL, + [Creator] [nvarchar](255) NOT NULL, + [IsActive] [bit] NOT NULL, + CONSTRAINT [PK_MatterTeamHistories] PRIMARY KEY CLUSTERED +( + [MatterTeamHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamHistoryActivityTypes] Script Date: 2/8/2018 10:53:14 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamHistoryActivityTypes]( + [ActivityTypeId] [tinyint] IDENTITY(0,1) NOT NULL, + [ActivityTypeName] [nvarchar](100) NOT NULL, + CONSTRAINT [PK_MatterTeamHistoryActivityTypes] PRIMARY KEY CLUSTERED +( + [ActivityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamRole] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamRole]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleDescription] [nvarchar](100) NOT NULL, + [IsAdmin] [bit] NOT NULL, + [IsDelegate] [bit] NOT NULL, + [WallRoleId] [int] NOT NULL, + [IsExceptedFromInactiveStatus] [bit] NOT NULL, + [IsRestrictedToGlobalAdmins] [bit] NOT NULL, + [CanRemoveUsers] [bit] NOT NULL, + [CanSubscribeUsers] [bit] NOT NULL, + CONSTRAINT [PK_MatterTeamRole] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamSubscriptionRequests] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamSubscriptionRequests]( + [RequestId] [int] IDENTITY(1,1) NOT NULL, + [MatterTeamId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [RequestDate] [datetime] NOT NULL, + [ResponseDate] [datetime] NULL, + [Status] [bit] NULL, + [Reason] [nvarchar](255) NULL, + [AdminEntityId] [int] NULL, + CONSTRAINT [PK_MatterTeamSubscriptionRequests] PRIMARY KEY CLUSTERED +( + [RequestId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[NotificationAttachments] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[NotificationAttachments]( + [NotificationId] [int] NOT NULL, + [AttachmentId] [int] NOT NULL, + CONSTRAINT [PK_NotificationAttachments] PRIMARY KEY CLUSTERED +( + [NotificationId] ASC, + [AttachmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[NotificationHistory] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[NotificationHistory]( + [NotificationHistoryId] [int] IDENTITY(1,1) NOT NULL, + [UserEntityId] [int] NOT NULL, + [NotificationId] [int] NOT NULL, + [NotificationSentDate] [datetime] NULL, + [AcknowledgmentId] [int] NULL, + CONSTRAINT [PK_NotificationHistory] PRIMARY KEY CLUSTERED +( + [NotificationHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[NotificationRoles] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[NotificationRoles]( + [NotificationRoleId] [int] NOT NULL, + [WallAccessTypeId] [int] NOT NULL, + [IsExceptedFromNotifications] [bit] NOT NULL, + [IsExceptedFromAcknowledgements] [bit] NOT NULL, + CONSTRAINT [PK_NotificationRoles] PRIMARY KEY CLUSTERED +( + [NotificationRoleId] ASC, + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Notifications] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Notifications]( + [NotificationId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [RecipientList] [nvarchar](1000) NOT NULL, + [NotificationText] [ntext] NULL, + [ForceNotification] [bit] NOT NULL, + [IsEnabled] [bit] NOT NULL, + [LastNotification] [datetime] NULL, + [IncludeAcknowledgments] [bit] NOT NULL, + [NotificationType] [nvarchar](50) NOT NULL, + [NextNotification] [datetime] NULL, + [TimeNumber] [int] NULL, + [TimeUnit] [nvarchar](30) NULL, + [Scope] [nvarchar](40) NOT NULL, + [CcList] [nvarchar](1000) NULL, + [BccList] [nvarchar](1000) NULL, + [From] [nvarchar](1000) NULL, + [NotificationName] [nvarchar](150) NOT NULL, + [Subject] [nvarchar](255) NULL, + [CreatorId] [int] NOT NULL, + [TriggerEvents] [smallint] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [IsDigest] [bit] NOT NULL, + CONSTRAINT [PK_Notifications] PRIMARY KEY CLUSTERED +( + [NotificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ObjectReleaseExceptions] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ObjectReleaseExceptions]( + [ObjectReleaseExceptionId] [int] IDENTITY(1,1) NOT NULL, + [ExtensionType] [nvarchar](64) NOT NULL, + [LibraryName] [nvarchar](255) NOT NULL, + [EntityId] [int] NOT NULL, + [ObjectType] [nvarchar](32) NOT NULL, + [ObjectId] [nvarchar](64) NOT NULL, + [ObjectName] [nvarchar](512) NULL, + [PrincipalName] [nvarchar](512) NOT NULL, + [PrincipalType] [nvarchar](32) NOT NULL, + [PrincipalId] [nvarchar](255) NOT NULL, + [Reason] [ntext] NULL, + [ExpirationDate] [datetime] NULL, + CONSTRAINT [PK_ObjectReleaseExceptions] PRIMARY KEY CLUSTERED +( + [ObjectReleaseExceptionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ObjectTemplate] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ObjectTemplate]( + [ObjectTemplateId] [int] IDENTITY(1,1) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [Name] [nvarchar](150) NOT NULL, + [TemplateText] [ntext] NULL, + [CreatorId] [int] NOT NULL, + [SeparatorType] [int] NOT NULL, + [Separator] [nvarchar](100) NULL, + CONSTRAINT [PK_ObjectTemplate] PRIMARY KEY CLUSTERED +( + [ObjectTemplateId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[PermanentInsidersAccessHistory] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PermanentInsidersAccessHistory]( + [AccessHistoryId] [int] IDENTITY(1,1) NOT NULL, + [UserEntityId] [int] NOT NULL, + [ActivityType] [nvarchar](10) NOT NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityReason] [nvarchar](1000) NULL, + CONSTRAINT [PK_PermanentInsidersAccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PolicyCategories] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PolicyCategories]( + [PolicyCategoryId] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](255) NOT NULL, + [DisplayName] [nvarchar](255) NOT NULL, + [PolicyCategoryGroupId] [int] NOT NULL, + CONSTRAINT [PK_PolicyCategories] PRIMARY KEY CLUSTERED +( + [PolicyCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PolicyCategoryGroups] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PolicyCategoryGroups]( + [PolicyCategoryGroupId] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_PolicyCategoryGroups] PRIMARY KEY CLUSTERED +( + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingAccessExplicit] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingAccessExplicit]( + [UserEntityId] [int] NOT NULL, + [ClientEntityId] [int] NOT NULL, + [MatterEntityId] [int] NULL, + [AllowingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingAccessImplicit] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingAccessImplicit]( + [UserEntityId] [int] NOT NULL, + [ClientEntityId] [int] NOT NULL, + [MatterEntityId] [int] NULL, + [ConflictingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingSharedResourcesExplicit] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingSharedResourcesExplicit]( + [AllowedUserEntityId] [int] NOT NULL, + [DeniedUserEntityId] [int] NOT NULL, + [ClientEntityID] [int] NOT NULL, + [MatterEntityID] [int] NULL, + [AllowingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL, + [Resource] [nvarchar](200) NOT NULL, + [ResourceType] [nvarchar](200) NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingSharedResourcesImplicit] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingSharedResourcesImplicit]( + [ConflictingUserEntityId] [int] NOT NULL, + [DeniedUserEntityId] [int] NOT NULL, + [ClientEntityID] [int] NOT NULL, + [MatterEntityID] [int] NULL, + [ConflictingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL, + [Resource] [nvarchar](200) NOT NULL, + [ResourceType] [nvarchar](200) NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportFields] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportFields]( + [ReportFieldId] [int] NOT NULL, + [FieldName] [nvarchar](128) NULL, + [ReportTypeId] [int] NOT NULL, + [FieldType] [nvarchar](255) NOT NULL, + [Description] [nvarchar](255) NOT NULL, + [TableName] [nvarchar](255) NOT NULL, + [ColumnName] [nvarchar](255) NULL, + [IsQueryable] [bit] NOT NULL, + [IsSearchable] [bit] NOT NULL, + [IsDefault] [bit] NOT NULL, + [OrderId] [int] NOT NULL, + CONSTRAINT [PK_ReportFields] PRIMARY KEY CLUSTERED +( + [ReportFieldId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Reports] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Reports]( + [ReportId] [int] IDENTITY(1,1) NOT NULL, + [UserId] [int] NOT NULL, + [ReportTypeId] [int] NOT NULL, + [Name] [nvarchar](100) NOT NULL, + [Created] [datetime] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [ReportXml] [ntext] NULL, + CONSTRAINT [PK_Reports] PRIMARY KEY CLUSTERED +( + [ReportId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportSchedules] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportSchedules]( + [ReportScheduleID] [int] IDENTITY(1,1) NOT NULL, + [ReportID] [int] NOT NULL, + [Subject] [nvarchar](1000) NULL, + [RecipientList] [nvarchar](1000) NOT NULL, + [RecipientAppUsers] [bit] NOT NULL, + [FrequencyType] [nvarchar](50) NOT NULL, + [FrequencyInterval] [int] NULL, + [FrequencyUnit] [nvarchar](50) NULL, + [SkipIfNoData] [bit] NOT NULL, + [IsEnabled] [bit] NOT NULL, + [NextTimeDue] [datetime] NULL, + [LastTimeRun] [datetime] NULL, + CONSTRAINT [PK_ReportSchedules] PRIMARY KEY CLUSTERED +( + [ReportScheduleID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportsConflictingLatestUpdateDate] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportsConflictingLatestUpdateDate]( + [ReportTypeId] [int] NOT NULL, + [LatestUpdateDate] [datetime] NOT NULL, + [UpdateStartTime] [datetime] NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportTypes] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportTypes]( + [ReportTypeId] [int] IDENTITY(1,1) NOT NULL, + [ReportTypeName] [nvarchar](100) NOT NULL, + [ReportTypeDescription] [nvarchar](255) NULL, + [ParentReportTypeId] [int] NULL, + [PolicyCategoryGroupId] [int] NULL, + CONSTRAINT [PK_ReportTypes] PRIMARY KEY CLUSTERED +( + [ReportTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Repositories] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Repositories]( + [RepositoryId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryTypeId] [int] NOT NULL, + [RepositoryName] [nvarchar](255) NOT NULL, + [RepositoryRemoteLabel] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_Repositories] PRIMARY KEY CLUSTERED +( + [RepositoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RepositoryTypes] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RepositoryTypes]( + [RepositoryTypeId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryType] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_RepositoryTypes] PRIMARY KEY CLUSTERED +( + [RepositoryTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ScheduledSecurityRepairStatus] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ScheduledSecurityRepairStatus]( + [ScheduledSecurityRepairStatusId] [int] IDENTITY(1,1) NOT NULL, + [ExtensionType] [nvarchar](64) NOT NULL, + [LibraryName] [nvarchar](255) NOT NULL, + [ObjectType] [nvarchar](32) NOT NULL, + [LastRepairTime] [datetime] NULL, + [Status] [nvarchar](32) NOT NULL, + [LastRepairId] [nvarchar](64) NULL, + CONSTRAINT [PK_ScheduledSecurityRepairStatus] PRIMARY KEY CLUSTERED +( + [ExtensionType] ASC, + [LibraryName] ASC, + [ObjectType] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_BLOB_TRIGGERS] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_BLOB_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [BLOB_DATA] [image] NULL +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_CALENDARS] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_CALENDARS]( + [CALENDAR_NAME] [varchar](200) NOT NULL, + [CALENDAR] [image] NOT NULL, + CONSTRAINT [PK_SCHEDULER_CALENDARS] PRIMARY KEY CLUSTERED +( + [CALENDAR_NAME] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_CRON_TRIGGERS] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_CRON_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [CRON_EXPRESSION] [varchar](120) NOT NULL, + [TIME_ZONE_ID] [varchar](80) NULL, + CONSTRAINT [PK_SCHEDULER_CRON_TRIGGERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_FIRED_TRIGGERS] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_FIRED_TRIGGERS]( + [ENTRY_ID] [varchar](95) NOT NULL, + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [IS_VOLATILE] [varchar](1) NOT NULL, + [INSTANCE_NAME] [varchar](200) NOT NULL, + [FIRED_TIME] [bigint] NOT NULL, + [PRIORITY] [int] NOT NULL, + [STATE] [varchar](16) NOT NULL, + [JOB_NAME] [varchar](200) NULL, + [JOB_GROUP] [varchar](200) NULL, + [IS_STATEFUL] [varchar](1) NULL, + [REQUESTS_RECOVERY] [varchar](1) NULL, + CONSTRAINT [PK_SCHEDULER_FIRED_TRIGGERS] PRIMARY KEY CLUSTERED +( + [ENTRY_ID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_JOB_DETAILS] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_JOB_DETAILS]( + [JOB_NAME] [varchar](200) NOT NULL, + [JOB_GROUP] [varchar](200) NOT NULL, + [DESCRIPTION] [varchar](250) NULL, + [JOB_CLASS_NAME] [varchar](250) NOT NULL, + [IS_DURABLE] [varchar](1) NOT NULL, + [IS_VOLATILE] [varchar](1) NOT NULL, + [IS_STATEFUL] [varchar](1) NOT NULL, + [REQUESTS_RECOVERY] [varchar](1) NOT NULL, + [JOB_DATA] [image] NULL, + CONSTRAINT [PK_SCHEDULER_JOB_DETAILS] PRIMARY KEY CLUSTERED +( + [JOB_NAME] ASC, + [JOB_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_JOB_LISTENERS] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_JOB_LISTENERS]( + [JOB_NAME] [varchar](200) NOT NULL, + [JOB_GROUP] [varchar](200) NOT NULL, + [JOB_LISTENER] [varchar](200) NOT NULL, + CONSTRAINT [PK_SCHEDULER_JOB_LISTENERS] PRIMARY KEY CLUSTERED +( + [JOB_NAME] ASC, + [JOB_GROUP] ASC, + [JOB_LISTENER] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_LOCKS] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_LOCKS]( + [LOCK_NAME] [varchar](40) NOT NULL, + CONSTRAINT [PK_SCHEDULER_LOCKS] PRIMARY KEY CLUSTERED +( + [LOCK_NAME] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_PAUSED_TRIGGER_GRPS] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_PAUSED_TRIGGER_GRPS]( + [TRIGGER_GROUP] [varchar](200) NOT NULL, + CONSTRAINT [PK_SCHEDULER_PAUSED_TRIGGER_GRPS] PRIMARY KEY CLUSTERED +( + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_SCHEDULER_STATE] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_SCHEDULER_STATE]( + [INSTANCE_NAME] [varchar](200) NOT NULL, + [LAST_CHECKIN_TIME] [bigint] NOT NULL, + [CHECKIN_INTERVAL] [bigint] NOT NULL, + CONSTRAINT [PK_SCHEDULER_SCHEDULER_STATE] PRIMARY KEY CLUSTERED +( + [INSTANCE_NAME] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_SIMPLE_TRIGGERS] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_SIMPLE_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [REPEAT_COUNT] [bigint] NOT NULL, + [REPEAT_INTERVAL] [bigint] NOT NULL, + [TIMES_TRIGGERED] [bigint] NOT NULL, + CONSTRAINT [PK_SCHEDULER_SIMPLE_TRIGGERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_TRIGGER_LISTENERS] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_TRIGGER_LISTENERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [TRIGGER_LISTENER] [varchar](200) NOT NULL, + CONSTRAINT [PK_SCHEDULER_TRIGGER_LISTENERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC, + [TRIGGER_LISTENER] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_TRIGGERS] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [JOB_NAME] [varchar](200) NOT NULL, + [JOB_GROUP] [varchar](200) NOT NULL, + [IS_VOLATILE] [varchar](1) NOT NULL, + [DESCRIPTION] [varchar](250) NULL, + [NEXT_FIRE_TIME] [bigint] NULL, + [PREV_FIRE_TIME] [bigint] NULL, + [PRIORITY] [int] NULL, + [TRIGGER_STATE] [varchar](16) NOT NULL, + [TRIGGER_TYPE] [varchar](8) NOT NULL, + [START_TIME] [bigint] NOT NULL, + [END_TIME] [bigint] NULL, + [CALENDAR_NAME] [varchar](200) NULL, + [MISFIRE_INSTR] [smallint] NULL, + [JOB_DATA] [image] NULL, + CONSTRAINT [PK_SCHEDULER_TRIGGERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ScreeningLawyerKeyMap] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ScreeningLawyerKeyMap]( + [EntityId] [int] NOT NULL, + [WallId] [int] NOT NULL, + CONSTRAINT [PK_ScreeningLawyerKeyMap] PRIMARY KEY CLUSTERED +( + [EntityId] ASC, + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SummaryDetails] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SummaryDetails]( + [SummaryDetailId] [int] IDENTITY(1,1) NOT NULL, + [TrackerExecutionId] [int] NOT NULL, + [UserName] [nvarchar](255) NULL, + [UserEntityId] [int] NOT NULL, + [Activity] [nvarchar](1000) NOT NULL, + [Repository] [nvarchar](255) NOT NULL, + [ActivityCount] [int] NOT NULL, + CONSTRAINT [PK_SummaryDetails] PRIMARY KEY CLUSTERED +( + [SummaryDetailId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerActivities] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerActivities]( + [TrackerId] [int] NOT NULL, + [ActivityId] [int] NOT NULL, + CONSTRAINT [PK_TrackerActivities] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC, + [ActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerCategories] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerCategories]( + [TrackerCategoryId] [int] NOT NULL, + [Name] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_TrackerCategories] PRIMARY KEY CLUSTERED +( + [TrackerCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerClientsAndMatters] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerClientsAndMatters]( + [TrackerId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [IsInclude] [bit] NOT NULL, + [TrackerSideId] [int] NOT NULL, + CONSTRAINT [PK_TrackerClientsAndMatters] PRIMARY KEY CLUSTERED +( + [TrackerSideId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutionActivities] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutionActivities]( + [TrackerExecutionId] [int] NOT NULL, + [ActivityId] [int] NOT NULL, + CONSTRAINT [PK_TrackerExecutionActivities] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC, + [ActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutionClientsAndMatters] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutionClientsAndMatters]( + [TrackerExecutionId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [IsInclude] [bit] NOT NULL, + CONSTRAINT [PK_TrackerExecutionClientsAndMatters] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutionLibraries] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutionLibraries]( + [TrackerExecutionId] [int] NOT NULL, + [LibraryId] [int] NOT NULL, + CONSTRAINT [PK_TrackerExecutionLibraries] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC, + [LibraryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutions] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutions]( + [TrackerExecutionId] [int] IDENTITY(1,1) NOT NULL, + [TrackerId] [int] NOT NULL, + [TrackerTypeId] [int] NOT NULL, + [LinkedPolicyId] [int] NULL, + [IntervalNumber] [int] NOT NULL, + [IntervalUnit] [nvarchar](50) NOT NULL, + [TrackerLimit] [decimal](8, 2) NULL, + [Created] [datetime] NOT NULL, + [IntervalEndDate] [datetime] NOT NULL, + [IntervalStartDate] [datetime] NOT NULL, + [OnlyPrivate] [bit] NOT NULL, + [OnlyDidNotAuthor] [bit] NOT NULL, + [DistinctDocuments] [bit] NOT NULL, + [GeneratesAlerts] [bit] NOT NULL, + [TrackerSideId] [int] NULL, + [IsCompleted] [bit] NOT NULL, + [TrackActivityCategories] [bit] NOT NULL, + [ThresholdType] [int] NOT NULL, + CONSTRAINT [PK_TrackerExecutions] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerRepositories] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerRepositories]( + [TrackerId] [int] NOT NULL, + [RepositoryId] [int] NOT NULL, + CONSTRAINT [PK_ThresholdRepositories] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC, + [RepositoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Trackers] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Trackers]( + [TrackerId] [int] IDENTITY(1,1) NOT NULL, + [TrackerName] [nvarchar](255) NOT NULL, + [TrackerDesc] [nvarchar](1000) NULL, + [IsEnabled] [bit] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [TrackerTypeId] [int] NOT NULL, + [Limit] [decimal](8, 2) NULL, + [StartDate] [datetime] NOT NULL, + [IntervalNumber] [int] NOT NULL, + [IntervalUnit] [nvarchar](50) NOT NULL, + [Notify] [nvarchar](1000) NULL, + [NotifyAppUsers] [bit] NOT NULL, + [DeliverIfNoAlert] [bit] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [NextTimeDue] [datetime] NOT NULL, + [CreatorId] [int] NOT NULL, + [OnlyPrivate] [bit] NOT NULL, + [OnlyDidNotAuthor] [bit] NOT NULL, + [DistinctDocuments] [bit] NOT NULL, + [ModifierId] [int] NOT NULL, + [GeneratesAlerts] [bit] NOT NULL, + [LinkedPolicyId] [int] NULL, + [TrackActivityCategories] [bit] NOT NULL, + [ThresholdType] [int] NOT NULL, + CONSTRAINT [PK_Thresholds] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerSides] Script Date: 2/8/2018 10:53:15 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerSides]( + [TrackerSideId] [int] IDENTITY(1,1) NOT NULL, + [TrackerId] [int] NOT NULL, + [WallSideId] [int] NULL, + [TrackerSideName] [nvarchar](250) NOT NULL, + [IsDeleted] [bit] NOT NULL, + CONSTRAINT [PK_TrackerSides] PRIMARY KEY CLUSTERED +( + [TrackerSideId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerTypes] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerTypes]( + [TrackerTypeId] [int] IDENTITY(1,1) NOT NULL, + [TrackerType] [nvarchar](255) NOT NULL, + [TrackerCategoryId] [int] NOT NULL, + [Icon] [nvarchar](255) NULL, + [Description] [ntext] NULL, + [IsVisible] [bit] NOT NULL, + CONSTRAINT [PK_TrackerTypes] PRIMARY KEY CLUSTERED +( + [TrackerTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerWatchList] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerWatchList]( + [TrackerId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [IsInclude] [bit] NOT NULL, + [TrackerSideId] [int] NOT NULL, + CONSTRAINT [PK_TrackerWatchList] PRIMARY KEY CLUSTERED +( + [TrackerSideId] ASC, + [UserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[UserActivityCounts] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[UserActivityCounts]( + [UserActivityId] [int] IDENTITY(1,1) NOT NULL, + [TrackerExecutionId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [ActivityCount] [int] NOT NULL, + CONSTRAINT [PK_UserActivityCounts] PRIMARY KEY CLUSTERED +( + [UserActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallAccessTypes] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallAccessTypes]( + [WallAccessTypeId] [int] IDENTITY(1,1) NOT NULL, + [WallAccessType] [nvarchar](50) NOT NULL, + [SelfMaintaining] [nvarchar](64) NOT NULL, + [RequireAckForAccess] [nvarchar](64) NOT NULL, + [OrderId] [int] NOT NULL, + [Icon] [nvarchar](200) NULL, + [Description] [ntext] NULL, + [SideConfig] [nvarchar](4000) NULL, + [AutoAddMatterTeams] [nvarchar](64) NOT NULL, + [RelationshipPairing] [nvarchar](64) NOT NULL, + [PolicyCategoryId] [int] NOT NULL, + [DefaultSelfMaintainingIntervalType] [nvarchar](50) NULL, + CONSTRAINT [PK_WallAccessTypes] PRIMARY KEY CLUSTERED +( + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallCustomComboValues] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallCustomComboValues]( + [Field] [nvarchar](32) NOT NULL, + [Value] [nvarchar](200) NOT NULL, + [PolicyCategoryGroupId] [int] NOT NULL, + CONSTRAINT [PK_WallCustomComboValues] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [Value] ASC, + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallCustomFieldConfig] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallCustomFieldConfig]( + [Field] [nvarchar](32) NOT NULL, + [DisplayName] [nvarchar](64) NOT NULL, + [IsRequired] [bit] NOT NULL, + [Type] [nvarchar](32) NOT NULL, + [Description] [nvarchar](100) NOT NULL, + [PolicyCategoryGroupId] [int] NOT NULL, + CONSTRAINT [PK_WallCustomFieldConfig] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallExceptions] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallExceptions]( + [WallId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [CreatorId] [int] NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_WallExceptions] PRIMARY KEY CLUSTERED +( + [WallId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallRoles] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallRoles]( + [WallRoleId] [int] IDENTITY(1,1) NOT NULL, + [WallRoleName] [nvarchar](100) NOT NULL, + [WallRoleXML] [ntext] NULL, + CONSTRAINT [PK_WallRoles] PRIMARY KEY CLUSTERED +( + [WallRoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[Walls] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Walls]( + [WallId] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](250) NULL, + [WallAccessTypeId] [int] NOT NULL, + [Notes] [ntext] NULL, + [CreatorId] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [IsEnabled] [bit] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [ExpirationDate] [datetime] NULL, + [IsSelfMaintaining] [bit] NOT NULL, + [IsRequireAcknowledgement] [bit] NOT NULL, + [CustomField1] [nvarchar](200) NULL, + [CustomField2] [nvarchar](200) NULL, + [CustomField3] [nvarchar](200) NULL, + [CustomField4] [nvarchar](200) NULL, + [CustomField5] [nvarchar](200) NULL, + [CustomField6] [nvarchar](200) NULL, + [CustomField7] [nvarchar](200) NULL, + [CustomField8] [nvarchar](200) NULL, + [CustomField9] [nvarchar](200) NULL, + [CustomField10] [nvarchar](200) NULL, + [CustomDate1] [datetime] NULL, + [CustomDate2] [datetime] NULL, + [CustomDate3] [datetime] NULL, + [CustomDate4] [datetime] NULL, + [CustomDate5] [datetime] NULL, + [SelfMaintainingPeriod] [int] NULL, + [SelfMaintainingPeriodUnit] [nvarchar](32) NULL, + [SelfMaintainingMinHours] [int] NULL, + [EffectiveDate] [datetime] NULL, + [ModifierId] [int] NULL, + [SecurityStatus] [nvarchar](32) NULL, + [SelfMaintainingPeriodStart] [datetime] NULL, + [SelfMaintainingPeriodEnd] [datetime] NULL, + [SecurityStartDate] [datetime] NULL, + [SecurityEndDate] [datetime] NULL, + [IsRelationshipPaired] [bit] NOT NULL, + [ExtLegalHoldID] [varchar](20) NULL, + [FoundationalGroupId] [nvarchar](20) NULL, + CONSTRAINT [PK_Walls] PRIMARY KEY CLUSTERED +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallSecurityStatus] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallSecurityStatus]( + [WallSecurityStatusId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [ExtensionType] [nvarchar](64) NOT NULL, + [LibraryName] [nvarchar](255) NOT NULL, + [EntityId] [int] NOT NULL, + [Status] [nvarchar](32) NOT NULL, + [SecuredObjectCount] [int] NOT NULL, + [TotalObjectCount] [int] NOT NULL, + [Errors] [ntext] NULL, + [LastRecalculationDate] [datetime] NULL, + CONSTRAINT [PK_WallSecurityStatus] PRIMARY KEY CLUSTERED +( + [WallId] ASC, + [ExtensionType] ASC, + [LibraryName] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallSideEntities] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallSideEntities]( + [WallSideId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [WallId] [int] NOT NULL, + [DateAdded] [datetime] NULL, + [WasAddedBySelfMaintaining] [bit] NULL, + [WallRoleId] [int] NULL, + CONSTRAINT [PK_WallSideEntities] PRIMARY KEY CLUSTERED +( + [WallSideId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallSides] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallSides]( + [WallSideId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [WallSideName] [nvarchar](250) NOT NULL, + CONSTRAINT [PK_WallSides] PRIMARY KEY CLUSTERED +( + [WallSideId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Widget] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Widget]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](50) NOT NULL, + [Description] [nvarchar](250) NULL, + [Url] [nvarchar](2083) NOT NULL, + [OrderNumber] [int] NOT NULL, + [Editable] [bit] NOT NULL, + [SupportRedirection] [bit] NOT NULL, + CONSTRAINT [PK_Widget] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WidgetInstance] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WidgetInstance]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [WidgetZoneId] [int] NOT NULL, + [WidgetId] [int] NOT NULL, + [OrderNumber] [int] NOT NULL, + [Expanded] [bit] NOT NULL, + [Maximized] [bit] NOT NULL, + [Resized] [bit] NOT NULL, + [Width] [int] NOT NULL, + [Height] [int] NOT NULL, + [Title] [nvarchar](250) NOT NULL, + [WidgetProperties] [nvarchar](4000) NOT NULL, + CONSTRAINT [PK_WidgetZoneWidgets] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WidgetZone] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WidgetZone]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [WidgetZoneTypeId] [int] NOT NULL, + [UserId] [int] NOT NULL, + [OrderNumber] [int] NOT NULL, + [Title] [nvarchar](250) NULL, + CONSTRAINT [PK_WidgetZone] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WidgetZoneType] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WidgetZoneType]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [WidgetZoneType] [nvarchar](50) NOT NULL, + [WidgetZoneTypeDescription] [nvarchar](250) NULL, + CONSTRAINT [PK_WidgetZoneType] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: View [dbo].[ConfigRestricted] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + + CREATE VIEW [dbo].[ConfigRestricted] AS + SELECT ConfigId, ConfigVariable, ConfigValue1, ConfigValue2, Category, IsVisible + FROM [Config] + WHERE (ConfigVariable NOT LIKE '%Password') + AND (ConfigVariable NOT LIKE '%Username') + AND (ConfigVariable NOT LIKE '%Server') + AND (ConfigVariable NOT LIKE '%Name') + AND (ConfigVariable NOT LIKE '%Domain') + AND (ConfigVariable NOT LIKE '%Url') + AND (ConfigVariable NOT LIKE '%LibraryXML') + AND (ConfigVariable NOT LIKE '%LicenseKey') + AND (ConfigVariable NOT LIKE '%ConnectionString') + AND (ConfigVariable NOT LIKE '%PowerUserGroupsXML') + AND (ConfigVariable NOT LIKE '%RootDirectoryXML') + AND (ConfigVariable NOT LIKE '%ConnectionString') + AND (ConfigVariable NOT LIKE 'Mail::SMTPHost') + AND (ConfigVariable NOT LIKE '%PublicGroupDN') + AND (ConfigVariable NOT LIKE '%AdminUsersXML') + AND (ConfigVariable NOT LIKE 'MessageBus::ReceiverXML') + AND (ConfigVariable NOT LIKE '%ApiKey') + AND (ConfigVariable NOT LIKE '%AuthToken') +GO +SET IDENTITY_INSERT [dbo].[Activities] ON + +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (1, 1, N'Open', N'0', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (2, 1, N'View', N'1', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (3, 1, N'Check out', N'2', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (4, 1, N'Check in', N'3', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (5, 1, N'Changed Profile', N'4', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (6, 1, N'Close', N'5', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (7, 1, N'Create', N'6', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (8, 1, N'Create Version', N'7', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (9, 1, N'Change Security', N'8', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (10, 1, N'Copy', N'9', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (11, 1, N'Print', N'10', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (12, 1, N'Mail', N'11', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (13, 1, N'Delete', N'13', 2) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (14, 1, N'Release', N'17', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (15, 1, N'Export', N'18', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (16, 1, N'Modify', N'19', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (17, 1, N'Declared', N'22', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (18, 2, N'Create', N'1', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (19, 2, N'Print', N'3', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (20, 2, N'Delete Content', N'6', 2) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (21, 2, N'Check out', N'11', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (22, 2, N'Check in', N'12', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (23, 2, N'Copy', N'17', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (24, 2, N'Edit profile', N'20', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (25, 2, N'Change security', N'23', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (26, 2, N'Mail', N'30', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (27, 3, N'Accepted Invited', N'COLLABORATION_ACCEPT', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (28, 3, N'Changed user roles', N'COLLABORATION_ROLE_CHANGE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (29, 3, N'Copied', N'COPY', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (30, 3, N'Deleted', N'DELETE', 2) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (31, 3, N'Downloaded', N'DOWNLOAD', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (32, 3, N'Edited', N'EDIT', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (33, 3, N'Enabled shared links', N'SHARE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (34, 3, N'Extend collaborator expiration', N'UPDATE_COLLABORATION_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (35, 3, N'Extend shared link expiration', N'UPDATE_SHARE_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (36, 3, N'Invited', N'COLLABORATION_INVITE', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (37, 3, N'Locked', N'LOCK', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (38, 3, N'Moved', N'MOVE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (39, 3, N'Previewed', N'PREVIEW', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (40, 3, N'Removed collaborators', N'COLLABORATION_REMOVE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (41, 3, N'Renamed', N'RENAME', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (42, 3, N'Set collaborator expiration', N'COLLABORATOR_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (43, 3, N'Set file auto-delete', N'STORAGE_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (44, 3, N'Set shared link expiration', N'SHARE_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (45, 3, N'Synched folder', N'ITEM_SYNC', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (46, 3, N'Undeleted', N'UNDELETE', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (47, 3, N'Unlocked', N'UNLOCK', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (48, 3, N'Unshared links', N'UNSHARE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (49, 3, N'Uploaded', N'UPLOAD', 1) +SET IDENTITY_INSERT [dbo].[Activities] OFF +SET IDENTITY_INSERT [dbo].[ActivityCategories] ON + +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (1, N'Content Create') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (2, N'Content Delete') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (3, N'Content Edit') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (4, N'Content Export') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (5, N'Content View') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (6, N'Profile Edit') +SET IDENTITY_INSERT [dbo].[ActivityCategories] OFF +SET IDENTITY_INSERT [dbo].[ApplicationRolesAT] ON + +INSERT [dbo].[ApplicationRolesAT] ([RoleId], [RoleName]) VALUES (1, N'Administrator') +INSERT [dbo].[ApplicationRolesAT] ([RoleId], [RoleName]) VALUES (2, N'Editor') +INSERT [dbo].[ApplicationRolesAT] ([RoleId], [RoleName]) VALUES (3, N'Read-Only') +SET IDENTITY_INSERT [dbo].[ApplicationRolesAT] OFF +SET IDENTITY_INSERT [dbo].[ApplicationRolesMTM] ON + +INSERT [dbo].[ApplicationRolesMTM] ([RoleId], [RoleName]) VALUES (1, N'Global Administrator') +INSERT [dbo].[ApplicationRolesMTM] ([RoleId], [RoleName]) VALUES (2, N'Editor') +INSERT [dbo].[ApplicationRolesMTM] ([RoleId], [RoleName]) VALUES (3, N'Read-Only') +SET IDENTITY_INSERT [dbo].[ApplicationRolesMTM] OFF +SET IDENTITY_INSERT [dbo].[ApplicationRolesWB] ON + +INSERT [dbo].[ApplicationRolesWB] ([RoleId], [RoleName]) VALUES (1, N'Administrator') +INSERT [dbo].[ApplicationRolesWB] ([RoleId], [RoleName]) VALUES (2, N'Editor') +INSERT [dbo].[ApplicationRolesWB] ([RoleId], [RoleName]) VALUES (3, N'Read-Only') +SET IDENTITY_INSERT [dbo].[ApplicationRolesWB] OFF +SET IDENTITY_INSERT [dbo].[ApplicationUsers] ON + +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (-1, 3, N'IntApp', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'IntApp', N'', 1, 0, CAST(N'2018-02-03T17:06:51.560' AS DateTime), CAST(N'2018-02-03T17:06:51.560' AS DateTime), NULL, 3, 3, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (1, 1, N'admin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Administrator', N'', 1, 0, CAST(N'2018-02-03T17:06:10.770' AS DateTime), CAST(N'2018-02-06T11:27:39.750' AS DateTime), CAST(N'2018-02-06T11:27:39.707' AS DateTime), 1, 1, 1) +SET IDENTITY_INSERT [dbo].[ApplicationUsers] OFF +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Client', N'Client') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Clients', N'Clients') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Entities', N'Entities') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Entity', N'Entity') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Group', N'Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Groups', N'Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Matter', N'Matter') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Matters', N'Matters') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Screening Lawyer', N'Screening Lawyer') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Side', N'Side') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Sides', N'Sides') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'User', N'User') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Users', N'Users') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Wall', N'Wall') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Walls', N'Walls') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Screening Lawyers', N'Screening Lawyers') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Client Group', N'Dynamic Client Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Client Groups', N'Dynamic Client Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Matter Group', N'Dynamic Matter Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Matter Groups', N'Dynamic Matter Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic User Group', N'Dynamic User Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic User Groups', N'Dynamic User Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Group', N'Dynamic Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Groups', N'Dynamic Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Unrestricted', N'Unrestricted') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Confidential', N'Confidential') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Restricted', N'Restricted') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Matter Team', N'Matter Team') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Matter Teams', N'Matter Teams') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Foundational', N'Foundational') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'External User', N'External User') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'External Users', N'External Users') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Legal Hold', N'Legal Hold') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Legal Holds', N'Legal Holds') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Policy', N'Policy') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Policies', N'Policies') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Supervisor', N'Supervisor') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Supervisors', N'Supervisors') +SET IDENTITY_INSERT [dbo].[Config] ON + +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (7, N'AcknowledgmentConfigurableText', N'By clicking here, you confirm that you have read and acknowledged this ethical wall', NULL, N'Acknowledgments', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (9, N'DefaultSelfMaintainingPeriod', N'2', N'Y', N'Self-Maintaining', N'NumericAndDimension', N'{"values":["years", "months", "days", "hours"]}', N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (10, N'DefaultSelfMaintainingMinHours', N'5', NULL, N'Self-Maintaining', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (11, N'DefaultFromAddress', N'admin@firm.com', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (12, N'EnabledSelfMaintainingExclusionary', N'0', N'Self-Maintaining for Exclusionary Walls', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (13, N'EnabledAcknowledgments', N'0', N'Acknowledgments', N'Email', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (14, N'EnabledReports', N'1', N'Reports', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (15, N'EnabledNotifications', N'1', N'Notifications', N'Email', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (16, N'WallExceptionsAllowAllEntityTypes', N'0', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (17, N'DefaultNotificationText', N'You are receiving this notification because you have been added to the [Type] "[Name]". The details of this [Type] follow below.
[AllGeneralInformation]
[AllSideInformation]', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (18, N'RemoteIDField', N'EntityDisplayId', NULL, N'General', N'Select', N'{"values":["EntityRemoteSystemId", "CrmSystemId", "FinancialSystemId", "OpenSystemId", "RecordsSystemId", "TimeBuilderSystemId", "TimeEntrySystemId", "WindowsNetworkLogon", "EntityDisplayId"]}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (23, N'ExtensionServiceUsername', N'administrator', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (24, N'ExtensionServicePassword', N'', NULL, N'Extension Service', N'Password', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (25, N'SystemLogLevel', N'INFO', NULL, N'Logging', N'Select', N'{"values":["ERROR","WARNING", "INFO", "DEBUG"]}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (27, N'ExtensionServiceSecureClientMatterProgressFrequency', N'300', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (28, N'DM5::Username', N'', NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (29, N'DM5::Password', N'', NULL, N'DM5', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (31, N'Interwoven::Username', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (32, N'HostedWorksite::Password', N'', NULL, N'HostedWorksite', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (33, N'Interwoven::ForceUnlockDocuments', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (35, N'Interwoven::MaxRowsForSearch', N'9999', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (36, N'ClientMatterSeparatorChar', N'-', NULL, N'General', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (37, N'ExtensionServiceTimeout', N'180', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (38, N'IRM::Username', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (39, N'IRM::Password', N'', NULL, N'IRM', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (40, N'IRM::ClusterName', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (41, N'IRM::Domain', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (42, N'IRM::DefaultSecurityPolicy', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (43, N'IRM::MatterIDsUnique', N'0', NULL, N'IRM', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (44, N'LegalKEY::WebServiceUsername', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (45, N'LegalKEY::WebServicePassword', N'', NULL, N'LegalKEY', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (46, N'LegalKEY::WebServiceUrl', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (47, N'LegalKEY::LicenseKey', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (48, N'LegalKEY::LKUsername', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (49, N'LegalKEY::LKPassword', N'', NULL, N'LegalKEY', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (54, N'APIServiceUsername', N'administrator', NULL, N'API Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (55, N'APIServicePassword', N'', NULL, N'API Service', N'Password', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (56, N'InsidersHeaderLogo', N'images/Intapp_logo_RGB_small.png', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (57, N'InsidersHeaderText', N'Insiders List Generated in Compliance with the Market Abuse Regulation', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (58, N'InsidersHeaderFieldsXML', N'', NULL, N'Insiders', N'XML', N'{"schema":"InsidersHeaderFieldsXML.xsd"}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (59, N'InsidersDefaultAddReason', N'User added to wall for default reason', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (60, N'InsidersDefaultRemoveReason', N'User removed from wall for default reason', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (61, N'EnabledInsiders', N'0', N'Insiders', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (62, N'TimeKM::Username', N'', NULL, N'TimeKM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (63, N'TimeKM::Password', N'', NULL, N'TimeKM', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (64, N'TimeKM::Domain', N'', NULL, N'TimeKM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (65, N'TimeKM::WebServiceUrl', N'', NULL, N'TimeKM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (66, N'CMS::ConnectionString', N'', NULL, N'CMS', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (67, N'Interwoven::MaxRequestsPerSession', N'1000', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (68, N'LegalKEY::ApiType', N'', NULL, N'LegalKEY', N'Select', N'{"values":["", "OpenTextAPI", "SecureAccessAPI"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (69, N'LegalKEY::UseWallRank', N'1', NULL, N'LegalKEY', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (70, N'InternalAPIServiceUrl', N'', NULL, N'API Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (71, N'Mail::SMTPHost', N'', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (72, N'Mail::SMTPUsername', N'', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (73, N'Mail::SMTPPassword', N'', NULL, N'Notifications', N'Password', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (74, N'Mail::IsUseSSL', N'0', NULL, N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (75, N'Mail::MaxAttachmentSize', N'10485760', NULL, N'Notifications', N'Numeric', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (76, N'ConflictResolutionModel', N'Standard', NULL, N'General', N'Select', N'{"values":["Classic","Standard"]}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (77, N'SelfMaintainingCriteriaEnabledInclusionary', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (78, N'SelfMaintainingCriteriaEnabledExclusionary', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (79, N'EnabledSelfMaintainingInclusionary', N'0', N'Self-Maintaining for Inclusionary Walls', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (80, N'ShowAcknowledgmentExceptionColumn', N'0', N'Excepted from Acknowledgment', N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (81, N'Interwoven::LibraryXML', N'', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (82, N'DM5::LibraryXML', N'', NULL, N'DM5', N'XML', N'{"schema":"DM5LibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (83, N'SelfMaintainingIncludeTypist', N'0', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (84, N'WebView::PowerUserModel', N'WebViewGroups', NULL, N'WebView', N'Select', N'{"values":["WebViewGroups", "FirmAll"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (85, N'WebView::PowerUserGroupsXML', N'', NULL, N'WebView', N'XML', N'{"schema":"WebViewPowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (86, N'WebView::IncludeUnfinalizedTimeEntries', N'0', NULL, N'WebViewSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (87, N'EnabledDynamicGroupConfig', N'0', N'Dynamic Groups', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (88, N'LegalKEY::PowerUserGroupsXML', N'', NULL, N'LegalKEY', N'XML', N'{"schema":"LegalKEYPowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (89, N'LegalKEY::UseWallRank2ForSupersededSecurity', N'0', NULL, N'LegalKEY', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (90, N'Decisiv::Server', N'', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (91, N'Decisiv::Port', N'8080', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (92, N'Decisiv::Username', N'', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (93, N'Decisiv::Password', N'', NULL, N'Decisiv', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (94, N'Decisiv::OnlySecureMatters', N'0', NULL, N'Decisiv', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (95, N'Decisiv::ConnectionString', N'', NULL, N'Decisiv', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (96, N'EnabledExtendedValidation', N'0', N'Extended Validation', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (97, N'EnabledConflictResolutionValidation', N'1', N'Conflict Resolution Validation', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (98, N'DynamicUserGroupLimit', N'1000', N'Maximum Dynamic User Group Members', N'Dynamic Groups', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (99, N'DynamicMatterGroupLimit', N'1000', N'Maximum Dynamic Matter Group Members', N'Dynamic Groups', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (100, N'DynamicClientGroupLimit', N'500', N'Maximum Dynamic Client Group Members', N'Dynamic Groups', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (101, N'InterAction::ServerURL', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (102, N'InterAction::Username', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (103, N'InterAction::Password', N'', NULL, N'InterAction', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (104, N'InterAction::DefaultViewAccessLevel', N'5', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (105, N'InterAction::DefaultAccessXML', N' + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + false + false + false + false + true + false + true + false + false + false + false +', NULL, N'InterAction', N'XML', N'{"schema":"InterActionDefaultAccessXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (106, N'ValidationWarningDisplayLimit', N'100', N'Validation Warning Display Limit', N'Logging', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (107, N'CMS::EveryoneWorkGroupCode', N'EVERY', NULL, N'CMS', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (108, N'AcknowledgmentHyperlinkText', N'Click here to acknowledge this wall.', NULL, N'Acknowledgments', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (109, N'InterAction::WebServiceDomain', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (110, N'InterAction::WebServiceUsername', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (111, N'InterAction::WebServicePassword', N'', NULL, N'InterAction', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (112, N'Decisiv::PublicGroupDN', N'', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (113, N'Elite::ConnectionString', N'', NULL, N'Elite', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (114, N'Accutrac::ConnectionString', N'', NULL, N'Accutrac', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (115, N'FileSurf::ConnectionString', N'', NULL, N'FileSurf', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (116, N'EliteRecords::WallLogin', N'sa', NULL, N'EliteRecords', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (117, N'SharePoint::Username', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (118, N'SharePoint::Password', N'', NULL, N'SharePoint', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (119, N'SharePoint::Domain', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (120, N'SharePoint::WallsUserRights', N'WebDesigner', NULL, N'SharePoint', N'Select', N'{"values":["WebDesigner", "Contributor", "Reader", "Administrator"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (121, N'Omnia::LibraryXML', N'', NULL, N'OmniaSelfMaintaining', N'XML', N'{"schema":"OmniaLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (122, N'Elite3E::IncludePendingTimeEntries', N'', NULL, N'Elite3ESelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (123, N'BizTalk::MatterIDsUnique', N'0', NULL, N'BizTalk', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (124, N'BizTalk::SupportsContractorSecurity', N'0', NULL, N'BizTalk', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (127, N'BizTalk::Domain', N'', NULL, N'BizTalk', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (129, N'BizTalk::ItineraryXML', N'', NULL, N'BizTalk', N'XML', N'{"schema":"BizTalkItineraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (130, N'SecurityGroupIDDelimiter', N'_', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (131, N'SecurityGroupIDPrefix', N'ZZINT_', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (132, N'SecurityGroupNamePrefix', N'IntApp Security Group for', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (133, N'ContractorSecurityGroupIDPrefix', N'YYINT_', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (134, N'ContractorSecurityGroupNamePrefix', N'IntApp Contractor Security Group for', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (135, N'DMSNotifySecurityBreacher', N'1', NULL, N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (136, N'DMSSecurityBreachEmails', NULL, NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (137, N'DM5::MasterLibrary', N'', NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (138, N'DM5::InterfaceType', N'DirectSQL', NULL, N'DM5', N'Select', N'{"values":["DirectSQL", "DM5API"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (139, N'DM5::MonitoredActivityTypeXML', N'12023', NULL, N'DM5', N'XML', N'{"schema":"DM5MonitoredActivityTypeXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (141, N'Interwoven::GrantAccessRight', N'3', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (142, N'Interwoven::MasterLibrary', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (143, N'Interwoven::MonitoredActivityTypeXML', N'7468', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenMonitoredActivityTypeXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (144, N'Accutrac::IsActive', N'0', NULL, N'Accutrac', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (145, N'BizTalk::IsActive', N'0', NULL, N'BizTalk', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (146, N'CarpeDiemSelfMaintaining::IsActive', N'0', NULL, N'CarpeDiemSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (147, N'CMS::IsActive', N'0', NULL, N'CMS', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (148, N'CMSSelfMaintaining::IsActive', N'0', NULL, N'CMSSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (149, N'Decisiv::IsActive', N'0', NULL, N'Decisiv', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (150, N'DM5::IsActive', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (151, N'DM5SelfMaintaining::IsActive', N'0', NULL, N'DM5SelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (152, N'EliteRecords::IsActive', N'0', NULL, N'EliteRecords', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (153, N'Elite3ESelfMaintaining::IsActive', N'0', NULL, N'Elite3ESelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (154, N'FileSurf::IsActive', N'0', NULL, N'FileSurf', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (155, N'InterAction::IsActive', N'0', NULL, N'InterAction', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (156, N'Interwoven::IsActive', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (157, N'InterwovenSelfMaintaining::IsActive', N'0', NULL, N'InterwovenSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (158, N'IRM::IsActive', N'0', NULL, N'IRM', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (159, N'LegalKEY::IsActive', N'0', NULL, N'LegalKEY', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (160, N'OmniaSelfMaintaining::IsActive', N'0', NULL, N'OmniaSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (161, N'SharePoint::IsActive', N'0', NULL, N'SharePoint', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (162, N'TimeKM::IsActive', N'0', NULL, N'TimeKM', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (163, N'WebView::IsActive', N'0', NULL, N'WebView', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (164, N'WebViewSelfMaintaining::IsActive', N'0', NULL, N'WebViewSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (165, N'MessageBus::ReceiverXML', N'IntAppExtensionServiceQueue@FRESH1.wm.promuslab.com', NULL, N'Extension Service', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (166, N'ExtensionServiceMaxRetryAttempts', N'10000', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (167, N'ExtensionServiceRetryInterval', N'300', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (168, N'ExtensionServiceDeleteFinishedJobs', N'1', NULL, N'Extension Service', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (169, N'ExtensionServiceSendAuditEmailIfNoRepairs', N'0', NULL, N'Extension Service', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (170, N'ExtensionServiceAuditEmails', N'', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (171, N'ExtensionServiceSQLTimeout', N'3600', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (172, N'DM5::DocExceptionsTable', NULL, NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (173, N'Interwoven::DocExceptionsColumn', NULL, NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (174, N'Accutrac::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Accutrac', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (175, N'BizTalk::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'BizTalk', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (176, N'CarpeDiemSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'CarpeDiemSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (177, N'CMS::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'CMS', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (178, N'CMSSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'CMSSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (179, N'Decisiv::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Decisiv', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (180, N'DM5::IncrementalRepairCronExpression', N'0 0/5 * * * ?', NULL, N'DM5', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (181, N'DM5::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'DM5', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (182, N'DM5SelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'DM5SelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (183, N'EliteRecords::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'EliteRecords', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (184, N'Elite3ESelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'Elite3ESelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (185, N'FileSurf::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'FileSurf', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (186, N'InterAction::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'InterAction', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (187, N'Interwoven::IncrementalRepairCronExpression', N'0 0/5 * * * ?', NULL, N'Interwoven', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (188, N'Interwoven::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Interwoven', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (189, N'InterwovenSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'InterwovenSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (190, N'IRM::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'IRM', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (191, N'LegalKEY::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (192, N'OmniaSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'OmniaSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (193, N'SharePoint::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'SharePoint', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (194, N'TimeKM::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'TimeKM', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (195, N'WebView::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'WebView', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (196, N'WebViewSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'WebViewSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (197, N'DefaultAccessGroup', N'', NULL, N'General', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (198, N'DM5::ContractorsGroup', N'', NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (199, N'DTESelfMaintaining::IsActive', N'0', NULL, N'DTESelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (200, N'DTESelfMaintaining::LibraryXML', N'', NULL, N'DTESelfMaintaining', N'XML', N'{"schema":"DTELibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (201, N'DTESelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'DTESelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (202, N'SharePoint::SecureDocumentsWithUniquePermissions', N'1', NULL, N'SharePoint', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (203, N'SharePoint::IgnoredUsersAndGroupsRegex', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (204, N'DTEAxiom::IsActive', N'0', NULL, N'DTEAxiom', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (205, N'DTEAxiom::LibraryXML', N'', NULL, N'DTEAxiom', N'XML', N'{"schema":"DTEAxiomLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (206, N'DTEAxiom::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'DTEAxiom', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (207, N'DefaultMTMMatterVisibility', N'3', NULL, N'Matter Team Manager', N'Select', N'{"values":["1", "2", "3", "4"]}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (208, N'DefaultMTMWallVisibility', N'3', NULL, N'Matter Team Manager', N'Select', N'{"values":["1", "2", "3", "4", "5"]}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (209, N'EnabledMTMNotifications', N'0', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (210, N'MTMApplicationUrl', N'http://<%=@hostname%>/MatterTeamManager/', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (211, N'DM5::DocumentsPerChunk', N'500', NULL, N'DM5', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (212, N'Interwoven::DocumentsPerChunk', N'500', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (213, N'Mail::SMTPTimeout', N'600', NULL, N'Notifications', N'Numeric', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (214, N'TimeKM::SetRestrictedSecurity', N'0', NULL, N'TimeKM', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (215, N'EnabledAddMatterTeamButtonExclusionary', N'0', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (216, N'EnabledSelfMaintainingMatterTeams', N'0', N'Self-Maintaining for Matter Teams', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (217, N'EnabledSelfMaintainingForMatterAdmins', N'1', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (218, N'DefaultMatterTeamRole', N'', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (219, N'SelfMaintainingCriteriaEnabledMatterTeams', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (220, N'EnabledLimitedAccessValidation', N'0', N'Limited Access Validation', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (221, N'GenericTimeEntrySelfMaintaining::LibraryXML', N'', N'', N'GenericTimeEntrySelfMaintaining', N'XML', N'{"schema":"GenericTimeEntrySelfMaintainingLibraryXML.xsd"}', N'Extensions') +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (222, N'GenericTimeEntrySelfMaintaining::IsActive', N'0', N'', N'GenericTimeEntrySelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (223, N'GenericTimeEntrySelfMaintaining::CronExpression', N'0 30 0 * * ?', N'', N'GenericTimeEntrySelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (224, N'GenericTimeEntrySelfMaintaining::RemoteIDSource', N'TimeEntry', N'', N'GenericTimeEntrySelfMaintaining', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (225, N'GenericDMSSelfMaintaining::LibraryXML', N'', N'', N'GenericDMSSelfMaintaining', N'XML', N'{"schema":"GenericDMSSelfMaintainingLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (226, N'GenericDMSSelfMaintaining::IsActive', N'0', N'', N'GenericDMSSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (227, N'GenericDMSSelfMaintaining::CronExpression', N'0 30 0 * * ?', N'', N'GenericDMSSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (228, N'GenericDMSSelfMaintaining::UseDateRange', N'0', N'', N'GenericDMSSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (229, N'BizTalk::IncludeLimitedAccessUsers', N'0', NULL, N'BizTalk', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (230, N'NetDocuments::IsActive', N'0', NULL, N'NetDocuments', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (241, N'NetDocuments::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'NetDocuments', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (242, N'NetDocuments::AdminEmail', N'', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (243, N'SharePoint::ConnectionString', N'', NULL, N'SharePoint', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (244, N'SharePoint::InterfaceType', N'ClientObjectModel', NULL, N'SharePoint', N'Select', N'{"values":["ClientObjectModel", "HttpModule"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (245, N'SharePoint::WallsContractorRights', N'WebDesigner', NULL, N'SharePoint', N'Select', N'{"values":["WebDesigner", "Contributor", "Reader", "Administrator"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (246, N'SharePoint::MaxOperationsPerRequest', N'100', NULL, N'SharePoint', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (249, N'BizTalk::WebServiceTimeout', N'100', NULL, N'BizTalk', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (250, N'Interwoven::EnabledUTC', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (251, N'EnabledCustomNotificationObjects', N'0', NULL, N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (252, N'EnabledAutoAddMatterTeams', N'0', N'Auto Adding Matter Teams', N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (253, N'SharePoint::AccessDeniedURL', N'/_layouts/AccessDenied.aspx', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (254, N'SharePoint::HttpModuleInclusionaryModel', N'Standard', NULL, N'SharePoint', N'Select', N'{"values":["Standard", "HttpModuleOnly"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (255, N'SharePoint::CacheRefreshInterval', N'600', NULL, N'SharePoint', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (257, N'EnabledObjectReleaseExceptions', N'0', N'Object Release Exceptions', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (258, N'ObjectReleaseExceptionsDefaultDuration', N'0', NULL, N'Object Exceptions', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (259, N'ObjectReleaseExceptionsEmails', N'', NULL, N'Object Exceptions', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (260, N'ObjectReleaseExceptionsEmailUserCreatingException', N'1', NULL, N'Object Exceptions', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (261, N'ObjectReleaseExceptionsEmailUserGrantedAccess', N'1', NULL, N'Object Exceptions', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (262, N'SecurityGroupIDPermissionLevelDelimiter', N'.', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (263, N'Interwoven::PermissionsXML', N' + + READ + 1 + 1 + + + READWRITE + 2 + 2 + + + FULLACCESS + 3 + 3 + +', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenPermissionsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (264, N'DM5::PermissionsXML', N' +', NULL, N'DM5', N'XML', N'{"schema":"DM5PermissionsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (265, N'Interwoven::IgnoredDocumentTypesXML', N' +', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenIgnoredDocumentTypesXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (266, N'DM5::IgnoredDocumentTypesXML', N' +', NULL, N'DM5', N'XML', N'{"schema":"DM5IgnoredDocumentTypesXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (267, N'DTEAxiomSelfMaintaining::IsActive', N'0', NULL, N'DTEAxiomSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (268, N'DTEAxiomSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'DTEAxiomSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (269, N'iManage::PluginSettingsUpdateInterval', N'24', NULL, N'Plugins', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (270, N'iManage::MTMLauncherMenuText', N'Manage Matter Team', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (271, N'iManage::MTMLauncherMenuPosition', N'0', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (272, N'iManage::SecurityValidationSecurityChangeText', N'Security change', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (273, N'iManage::SecurityValidationViolationText', N'is in violation of wall', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (274, N'iManage::SecurityValidationViolationTextPlural', N'is in violation of walls', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (275, N'iManage::SecurityValidationPublicPrivateText', N'You are attempting to make information public in violation of a confidentiality policy. The security changes have been automatically reversed.', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (276, N'iManage::SecurityValidationSecurityErrorText', N'You are attempting to grant access to individuals in violation of an ethical wall or confidentiality policy. The security changes have been automatically reversed.', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (277, N'iManage::SecurityValidationRemoveViolatingText', N'You are attempting to grant access to individuals in violation of an ethical wall. You may remove the users in violation or cancel all security changes.', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (278, N'iManage::SecurityValidationReleaseExceptionText', N'You are attempting to grant access to individuals in violation of a confidentiality policy. If you choose to proceed, you should be sure they have a legitimate and urgent need to access this information.', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (279, N'DMSNotifySecurityBreachee', N'0', NULL, N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (280, N'Interwoven::DisableInclusionaryType', N'Standard', NULL, N'Interwoven', N'Select', N'{"values":["Standard", "Preserve"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (281, N'DM5::DisableInclusionaryType', N'Standard', NULL, N'DM5', N'Select', N'{"values":["Standard", "Preserve"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (282, N'FileShare::IsActive', N'0', NULL, N'FileShare', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (283, N'FileShare::Structure', N'Hierarchical', NULL, N'FileShare', N'Select', N'{"values":["Hierarchical", "Flat"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (284, N'FileShare::UserName', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (285, N'FileShare::Password', N'', NULL, N'FileShare', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (286, N'FileShare::WatchSecurityEvents', N'1', NULL, N'FileShare', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (287, N'FileShare::RootDirectoryXML', N' + + exampleshare + +\\servername\exampleshare + + [0-9]{5})]]> + [0-9]{4})]]> + FullControl + Modify +Read + + + INTAPP\ITStaff + FullControl + + + + + + FullControl + Modify +Read + + +', NULL, N'FileShare', N'XML', N'{"schema":"FileShareRootDirectoryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (288, N'FileShare::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'FileShare', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (289, N'FileShare::IncrementalRepairCronExpression', N'0 0/5 * * * ?', NULL, N'FileShare', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (291, N'ActivityRetentionDays', N'90', NULL, N'Activity Tracker', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (292, N'ActivityTrackerApplicationURL', N'http://', NULL, N'Activity Tracker', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (293, N'ThresholdMaxAlerts', N'250', NULL, N'Activity Tracker', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (294, N'SharePoint::ClientPropertyName', N'Client', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (295, N'SharePoint::MatterPropertyName', N'Matter', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (296, N'DM5::UseShortSecurityGroupID', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (297, N'FileSurf::UseShortSecurityGroupID', N'0', NULL, N'FileSurf', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (298, N'LegalKEYAdverseParties::IsActive', N'0', NULL, N'LegalKEYAdverseParties', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (299, N'LegalKEYAdverseParties::CodesXML', N'', NULL, N'LegalKEYAdverseParties', N'XML', N'{"schema":"LegalKEYAdversePartiesCodesXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (300, N'LegalKEYAdverseParties::CronExpression', N'0 30 1 * * ?', NULL, N'LegalKEYAdverseParties', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (301, N'Accutrac::AuditEmails', N'', NULL, N'Accutrac', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (302, N'BizTalk::AuditEmails', N'', NULL, N'BizTalk', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (303, N'CMS::AuditEmails', N'', NULL, N'CMS', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (304, N'Decisiv::AuditEmails', N'', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (305, N'DM5::AuditEmails', N'', NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (306, N'DTEAxiom::AuditEmails', N'', NULL, N'DTEAxiom', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (307, N'EliteRecords::AuditEmails', N'', NULL, N'EliteRecords', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (308, N'FileShare::AuditEmails', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (309, N'FileSurf::AuditEmails', N'', NULL, N'FileSurf', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (310, N'InterAction::AuditEmails', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (311, N'Interwoven::AuditEmails', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (312, N'IRM::AuditEmails', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (313, N'LegalKEY::AuditEmails', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (314, N'NetDocuments::AuditEmails', N'', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (315, N'SharePoint::AuditEmails', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (316, N'TimeKM::AuditEmails', N'', NULL, N'TimeKM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (317, N'WebView::AuditEmails', N'', NULL, N'WebView', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (318, N'NetDocuments::IgnoredDocumentTypesXML', N' +', NULL, N'NetDocuments', N'XML', N'{"schema":"NetDocumentsIgnoredDocumentTypesXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (321, N'SharePoint::AccessDeniedURLAppendRedirect', N'1', NULL, N'SharePoint', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (322, N'DM5::GrantAuthorAccess', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (323, N'DM5::GrantTypistAccess', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (324, N'MTMInactiveMemberAdditionText', N'User {username} will be added in an inactive state due to an existing wall.', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (325, N'MTMInactiveMemberHoverText', N'This matter team member is inactive because the user is excluded from the matter by an existing wall.', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (326, N'Interwoven::UpdateDocHistory', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (327, N'DM5::UpdateActivityLog', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (328, N'Interwoven::SecurityBreachIgnoredUsersXML', N'', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenSecurityBreachIgnoredUsersXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (329, N'DM5::SecurityBreachIgnoredUsersXML', N'', NULL, N'DM5', N'XML', N'{"schema":"DM5SecurityBreachIgnoredUsersXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (330, N'FileShare::ExceptedFoldersRegex', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (331, N'UserNotificationObjectSortColumn', N'', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (332, N'Interwoven::AllowExternalUsersAndGroups', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (333, N'EliteRecords::PowerUsersXML', N'', NULL, N'EliteRecords', N'XML', N'{"schema":"EliteRecordsPowerUsersXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (334, N'IsLinqLoggingEnabled', N'0', NULL, N'Logging', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (335, N'WBApplicationURL', N'http://<%=@hostname%>/<%=@websitename%>/', NULL, N'General', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (336, N'Interwoven::SecureWorkspacesAndFolders', N'1', N'Interwoven Workspace Security', N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (337, N'EnabledObjectConfinementExceptions', N'0', N'Object Confinement Exceptions', N'Features', N'ComponentSwitcher', NULL, NULL) +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (338, N'EnabledMTMFeaturesInWB', N'1', N'MTM Features in Intapp Walls', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (339, N'EnabledActivityTrackerApplication', N'0', N'Activity Tracker', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (340, N'EnabledMTMApplication', N'1', N'Matter Team Manager', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (341, N'EnabledWBApplication', N'1', N'Intapp Walls', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (342, N'WallsDB::SQLTimeout', N'120', NULL, N'General', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (343, N'SystemLog::MaximumRows', N'500000', NULL, N'Logging', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (344, N'IRM::LibraryXML', N'', NULL, N'IRM', N'XML', N'{"schema":"IRMLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (345, N'ExtensionServiceConfigXML', N'', NULL, N'Extension Service', N'XML', N'{"schema":"ExtensionServiceConfigXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (346, N'CarpeDiem::IncludeUnfinalizedTimeEntries', N'0', NULL, N'CarpeDiemSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (347, N'CMS::IncludeUnfinalizedTimeEntries', N'0', NULL, N'CMSSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (348, N'DTESelfMaintaining::IncludeUnfinalizedTimeEntries', N'0', NULL, N'DTESelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (349, N'DTEAxiom::IncludeUnfinalizedTimeEntries', N'0', NULL, N'DTEAxiomSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (350, N'Interwoven::LastRepairSecondsToOverlap', N'0', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (351, N'FileShare::ConnectionString', N'', NULL, N'FileShare', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (352, N'Interwoven::IgnoredDocumentsXML', N' +', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenIgnoredDocumentsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (353, N'ProLaw::IsActive', N'0', NULL, N'ProLaw', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (354, N'ProLaw::LibraryXML', N'', NULL, N'ProLaw', N'XML', N'{"schema":"ProLawLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (355, N'ProLaw::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'ProLaw', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (356, N'Interwoven::IgnoredGroupName', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (357, N'TimeBuilder::IsActive', N'0', NULL, N'TimeBuilder', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (358, N'TimeBuilder::LibraryXML', N'', NULL, N'TimeBuilder', N'XML', N'{"schema":"TimeBuilderLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (359, N'TimeBuilder::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'TimeBuilder', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (360, N'Decisiv::IsLegacyVersion', N'0', NULL, N'Decisiv', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (361, N'EnabledLegalHolds', N'0', N'Legal Holds', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (366, N'LegalHoldsAcknowledgmentConfigurableText', N'By clicking here, you confirm that you have read and acknowledged this hold', NULL, N'Acknowledgments', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (367, N'LegalHoldsAcknowledgmentHyperlinkText', N'Click here to acknowledge this hold.', NULL, N'Acknowledgments', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (368, N'LegalHolds::DefaultSelfMaintainingMinHours', N'5', NULL, N'Legal Holds', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (369, N'EnabledSelfMaintainingLegalHolds', N'0', N'Self-Maintaining for Legal Holds', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (370, N'SelfMaintainingCriteriaEnabledLegalHolds', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (371, N'EnabledRelationshipPairing', N'0', N'Relationship Pairing', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (372, N'EnabledRelationshipPairingForMatterTeams', N'0', N'Relationship Pairing for Matter Teams', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (373, N'PairedMatterTeamRole', N'', N'The MTM role ID to assign to subordinate entity when their attorneys are added to the "members" side of a matter team', N'Relationship Pairing', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (374, N'PairedMatterTeamAdminRole', N'', N'The MTM admin role ID to assign to subordinate entity when their attorneys are added to the "administrators" side of a matter team', N'Relationship Pairing', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (375, N'PairedRelationshipID', N'', N'The Id that is used to define the "attorney-secretary" relationship', N'Relationship Pairing', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (376, N'PairedWallRole', N'', N'The wall role ID to assign to secretaries when their attorneys are added to a wall', N'Relationship Pairing', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (377, N'CarpeDiem::LibraryXML', N'', NULL, N'CarpeDiem', N'XML', N'{"schema":"CarpeDiemLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (378, N'UseMultiValuedFinancialUserIDs', N'0', NULL, N'Extension Service', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (381, N'EnabledWallsAndSecurity', N'1', N'Walls and Security', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (382, N'Interwoven::SecureLegalHolds', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (384, N'DM5::SecureLegalHolds', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (385, N'Interwoven::UpdateLegalHoldDocHistory', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (386, N'DM5::UpdateLegalHoldActivityLog', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (387, N'MatterTeamSubscriptionType', N'', NULL, N'Matter Team Manager', N'Select', N'{"values":["","OFF", "AUTO", "REQUEST"]}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (388, N'MatterTeamSubscriptionRequestHeaderText', N'Please review the following matter team access request:', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (389, N'MatterTeamSubscriptionDenyRequestHyperlinkText', N'Deny Request', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (390, N'MatterTeamSubscriptionApproveRequestHyperlinkText', N'Approve Request', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (391, N'MatterTeamSubscriptionRequestInterval', N'1440', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (392, N'EnabledDigestNotifications', N'0', N'Digest Notifications', N'Email', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (393, N'SendDigestNotificationsCronExpression', N'0 0 1 ? * SAT', NULL, N'Digest Notifications', N'Cron expression', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (394, N'DigestSubject', N'Intapp Walls Digest Notification', NULL, N'Digest Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (395, N'WebViewTimekeeper::IsActive', N'0', NULL, N'WebViewTimekeeper', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (396, N'WebViewTimekeeper::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'WebViewTimekeeper', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (397, N'WebViewTimekeeper::ExclusionarySecurity', N'0', NULL, N'WebViewTimekeeper', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (398, N'Interwoven::LegalHoldColumn', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (399, N'TimeBuilderSelfMaintaining::IsActive', N'0', NULL, N'TimeBuilderSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (400, N'TimeBuilderSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'TimeBuilderSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (401, N'TimeBuilderSelfMaintaining::IncludeUnfinalizedTimeEntries', N'0', NULL, N'TimeBuilderSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (402, N'ExecuteTrackersCronExpression', N'0 0/5 * * * ?', NULL, N'Activity Tracker', N'Cron expression', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (403, N'ExtensionServiceMaxRepairsInAuditEmail', N'100000', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (404, N'EnabledSelfMaintainingDateRange', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (405, N'DefaultMTMSelfMaintainingIntervalType', N'Fixed Lookback And Ongoing', NULL, N'Matter Team Manager', N'Select', N'{"values":["Fixed Lookback And Ongoing", "Ongoing Only", "All Past Only", "Fixed Lookback Only", "No Default"]}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (406, N'CarpeDiem::SecureChar', N'R', NULL, N'CarpeDiem', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (407, N'CarpeDiem::IsActive', N'0', NULL, N'CarpeDiem', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (408, N'CarpeDiem::AuditEmails', N'', NULL, N'CarpeDiem', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (409, N'Interwoven::ContractorGrantAccessRight', N'3', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (410, N'CarpeDiem::ActiveChar', N'A', NULL, N'CarpeDiem', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (411, N'CMS::IsLegacyVersion', N'1', NULL, N'CMS', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (412, N'CarpeDiem::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'CarpeDiem', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (413, N'Generic::IsActive', N'0', NULL, N'Generic', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (414, N'Generic::LibraryXML', N'', NULL, N'Generic', N'XML', N'{"schema":"GenericLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (415, N'Generic::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Generic', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (416, N'Generic::EntityRemoteIDSource', N'DMS', NULL, N'Generic', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (417, N'Generic::UserRemoteIDSource', N'DMS', NULL, N'Generic', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (418, N'CarpeDiem::DummyUser', N'', NULL, N'CarpeDiem', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (419, N'Interwoven::RepairGrantAccessRight', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (420, N'Interwoven::RepairContractorGrantAccessRight', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (421, N'FileShare::UseActiveDirectorySecurityGroups', N'0', NULL, N'FileShare', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (422, N'FileShare::DomainControllerAddress', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (423, N'FileShare::ActiveDirectoryUserName', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (424, N'FileShare::ActiveDirectoryPassword', N'', NULL, N'FileShare', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (426, N'ImportActivityBeforeTrackerExecution', N'1', NULL, N'Activity Tracker', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (427, N'ImportActivityCronExpression', N'0 30 2 * * ?', NULL, N'Activity Tracker', N'Cron expression', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (428, N'AppVersion', N'6.2.2002.5', NULL, N'General', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (429, N'ActivityRetentionPolicyCronExpression', N'0 0 2 * * ?', NULL, N'Activity Tracker', N'Cron expression', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (431, N'Box::IsActive', N'0', NULL, N'Box', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (432, N'Box::ClientMatterRegex', N'.*ID:(?[0-9]{5})-(?[0-9]{4}).*|.*ID:(?[0-9]{5}).*', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (433, N'Box::ApiKey', N'jjlj1vfxv50z6na834hrk6n7sfatu4tb', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (435, N'NetDocuments::CabinetsXML', N'VESVES00', NULL, N'NetDocuments', N'XML', N'{"schema":"NetDocumentsCabinetsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (436, N'DefaultAlertThresholdLimit', N'0', NULL, N'Activity Tracker', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (437, N'SharePoint::EnabledClaimsAuthentication', N'0', NULL, N'SharePoint', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (438, N'Interwoven::IgnoredWorkspacesAndFoldersXML', N'', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenIgnoredWorkspacesAndFoldersXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (439, N'EnabledWallExpirationDate', N'1', NULL, N'General', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (440, N'EnabledWallEffectiveDate', N'1', NULL, N'General', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (441, N'Interwoven::PowerUserGroupsXML', N'', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenPowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (442, N'Elite3E::Username', N'', NULL, N'Elite3E', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (443, N'Elite3E::Password', N'', NULL, N'Elite3E', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (444, N'Elite3E::Domain', N'', NULL, N'Elite3E', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (445, N'Elite3E::WebServiceUrl', N'', NULL, N'Elite3E', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (446, N'Elite3E::CommentText', N'MANAGED BY WALL BUILDER', NULL, N'Elite3E', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (447, N'Elite3EEthicalWalls::AdminUser', N'', NULL, N'Elite3EEthicalWalls', N'Text', NULL, N'Extensions') +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (448, N'Elite3EEthicalWalls::AccessLvlConfig', N'Manage', NULL, N'Elite3EEthicalWalls', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (449, N'Elite3EEthicalWalls::IsActive', N'0', NULL, N'Elite3EEthicalWalls', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (450, N'Elite3EEthicalWalls::UserRemoteIdSource', N'WindowsNetworkLogon', NULL, N'Elite3EEthicalWalls', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (451, N'Elite3EEthicalWalls::EliteUserSource', N'networkalias', NULL, N'Elite3EEthicalWalls', N'Select', N'{"values":["guid", "networkalias", "emailaddr", "username"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (452, N'Elite3EEthicalWalls::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Elite3EEthicalWalls', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (453, N'Elite3EEthicalWalls::AuditEmails', N'', NULL, N'Elite3EEthicalWalls', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (454, N'Elite3EMattWorkTkpr::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Elite3EMattWorkTkpr', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (455, N'Elite3EMattWorkTkpr::AuditEmails', N'', NULL, N'Elite3EMattWorkTkpr', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (456, N'Elite3EMattWorkTkpr::IsActive', N'0', NULL, N'Elite3EMattWorkTkpr', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (457, N'Elite3E::ConnectionString', N'', NULL, N'Elite3E', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (458, N'EnabledFoundationalPolicies', N'0', N'Foundational Policies', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (461, N'Foundational::DefaultSelfMaintainingMinHours', N'5', NULL, N'Foundational', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (462, N'InitialSecurityConfinement', N'0', NULL, N'Object Exceptions', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (463, N'LegalKEY::LibraryXML', N'', NULL, N'LegalKEY', N'XML', N'{"schema":"LegalKEYLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (464, N'Interwoven::FoundationalGrantAccessRight', N'3', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (465, N'Interwoven::RepairFoundationalGrantAccessRight', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (466, N'Interwoven::IncrementalRepairWorkspacesAndFolders', N'0', N'Interwoven Workspace Security', N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (467, N'FoundationalSecurityGroupIDPrefix', N'ZZB_', NULL, N'Foundational', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (468, N'FoundationalSecurityGroupNamePrefix', N'IntApp Foundational Security Group for', NULL, N'Foundational', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (469, N'CMS::FoundationalGroupIDPrefix', N'^', NULL, N'CMS', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (470, N'CMS::SecureFoundationalPolicies', N'0', NULL, N'CMS', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (471, N'Interwoven::SecureFoundationalPolicies', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (472, N'Interwoven::ContentSecurityColumn', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (473, N'Open::IsActive', N'0', NULL, N'Open', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (474, N'Open::LibraryXML', N'', NULL, N'Open', N'XML', N'{"schema":"OpenLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (475, N'Open::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Open', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (476, N'Box::ApiSecretKey', N'SDU4TpNpvVmdMm60s5UADrYLpQciOZuC', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (477, N'Box::RefreshToken', N'', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (478, N'Box::AdminLogin', N'', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (479, N'SecurityBreachEmailMessageHtml', N'

Prevented Breach Notification

Intapp has detected that access settings on the "{ObjectName}" ({ObjectType}#: {ObjectNumber}{ObjectVersion}) have been modified{BreacherUser}.

+

This {ObjectType} is currently protected by a wall. Security has been reapplied{BreachDisallowedMessage}.

+

Client: {ClientID} {ClientDesc}
+Matter: {MatterID} {MatterDesc}
+Library: {Library}

', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (480, N'SecurityBreachDisallowFormat', N' to disallow access by the {BreachPrincipalType} "{BreachPrincipalDesc}" (ID: {BreachPrincipalId})"', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (481, N'DTEAxiom::IsLegacyVersion', N'0', NULL, N'DTEAxiom', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (482, N'BizTalk::WebServiceXML', N'', NULL, N'BizTalk', N'XML', N'{"schema":"BizTalkWebServiceXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (483, N'Interwoven::DisableFoundationalType', N'Standard', NULL, N'Interwoven', N'Select', N'{"values":["Standard", "Preserve", "Alter"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (484, N'Interwoven::FoundationalAlterAccessRight', N'1', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (485, N'NetDocuments::SecureLegalHolds', N'0', NULL, N'NetDocuments', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (486, N'Foundational::MaxFoundationalSecurityJobSize', N'100', NULL, N'Foundational', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (487, N'FileShare::SecureFoundationalPolicies', N'0', NULL, N'FileShare', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (488, N'NetDocuments::SecureWorkspaces', N'0', N'NetDocuments Workspace Security', N'NetDocuments', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (489, N'RecalculateDEGMembershipsCronExpression', N'0 0 4 ? * TUE', NULL, N'Dynamic Groups', N'Cron expression', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (490, N'CMS::PowerUserGroupsXML', N'', NULL, N'CMS', N'XML', N'{"schema":"CMSPowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (491, N'DM5::SecureFoundationalPolicies', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (492, N'DM5::FoundationalAccessRight', N'255', NULL, N'DM5', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (493, N'DM5::DisableFoundationalType', N'Standard', NULL, N'DM5', N'Select', N'{"values":["Standard", "Preserve", "Alter"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (494, N'DM5::FoundationalAlterAccessRight', N'1', NULL, N'DM5', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (495, N'Elite3EEthicalWalls::WallsPerChunk', N'2000', NULL, N'Elite3EEthicalWalls', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (496, N'Elite3EEthicalWalls::WallsPerChunkForCreateAndDelete', N'4', NULL, N'Elite3EEthicalWalls', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (497, N'Elite3EEthicalWalls::WebServiceTimeout', N'3600', NULL, N'Elite3EEthicalWalls', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (498, N'MTMEmailMaxRecipients', N'50', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (499, N'EnabledPasswordEncryption', N'0', NULL, N'General', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (500, N'SharePoint::HttpModuleUrlContinueMatchRegex', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (501, N'SharePoint::HttpModuleUrlAbortMatchRegex', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (502, N'DTEAxiom::SecureUserType', N'TIMEKEEPER', NULL, N'DTEAxiom', N'Select', N'{"values":["OPERATOR", "TIMEKEEPER", "BOTH"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (503, N'DigestEmailHeader', N'', NULL, N'Digest Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (504, N'CalculateStatisticsCronExpression', N'0 03 3 * * ?', NULL, N'Activity Tracker', N'Cron expression', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (505, N'SharePoint::DisableBehavior', N'Preserve', NULL, N'SharePoint', N'Select', N'{"values":["Preserve", "CopyFromParent", "Alter", "PreserveAlter"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (506, N'SharePoint::DisableAlterPrincipalsXML', N'', NULL, N'SharePoint', N'XML', N'{"schema":"SharePointDisableAlterPrincipalsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (507, N'EnabledMatterTeamTimeEntryData', N'1', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (508, N'SharePoint::PowerUsersAndGroupsXML', N'', NULL, N'SharePoint', N'XML', N'{"schema":"SharePointPowerUsersAndGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (509, N'IntermediateDbConnectionString', N'server=(local);database=ActivityTracker; Integrated Security=SSPI', NULL, N'Activity Tracker', N'Connection string', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (511, N'NetDocuments::RefreshToken', N'', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (512, N'NetDocuments::ClientId', N'AP-KQUYA514', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (513, N'NetDocuments::ClientSecret', N'iUeFZkOD7mv3nHBJGAifLM2kpRaf7JONNM9za3sYQxk5d0i6', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (514, N'NetDocuments::RESTServiceRegion', N'US', NULL, N'NetDocuments', N'Select', N'{"values":["US", "EU", "AU"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (515, N'NetDocuments::UserRemoteIdSource', N'DMS', NULL, N'NetDocuments', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (516, N'MatterTeamSubscriptionRequireReason', N'1', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (517, N'MatterTeamSubscriptionText', N'You have requested to join this matter team. Are you sure?', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (518, N'FileShare::SmartRepairCronExpression', N'0 30 0 * * ?', NULL, N'FileShare', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (519, N'IsAccutracVisible', N'0', N'Accutrac', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (520, N'IsBizTalkVisible', N'0', N'BizTalk', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (521, N'IsBoxVisible', N'0', N'Box', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (522, N'IsCarpeDiemVisible', N'0', N'Carpe Diem', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (523, N'IsCarpeDiemSelfMaintainingVisible', N'0', N'Carpe Diem Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (524, N'IsCMSVisible', N'0', N'CMS', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (525, N'IsCMSSelfMaintainingVisible', N'0', N'CMS Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (526, N'IsDecisivVisible', N'0', N'Decisiv', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (527, N'IsDM5Visible', N'0', N'DM5', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (528, N'IsDM5SelfMaintainingVisible', N'0', N'DM5 Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (529, N'IsDTEAxiomVisible', N'0', N'DTE Axiom', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (530, N'IsDTEAxiomSelfMaintainingVisible', N'0', N'DTE Axiom Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (531, N'IsDTESelfMaintainingVisible', N'0', N'DTE Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (532, N'IsEliteVisible', N'0', N'Elite', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (533, N'IsElite3EVisible', N'0', N'Elite 3E', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (534, N'IsElite3EEthicalWallsVisible', N'0', N'Elite 3E Ethical Walls', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (535, N'IsElite3EMattWorkTkprVisible', N'0', N'Elite 3E Matter Working Timekeeper', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (536, N'IsElite3ESelfMaintainingVisible', N'0', N'Elite 3E Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (537, N'IsEliteRecordsVisible', N'0', N'Elite Records', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (538, N'IsFileShareVisible', N'0', N'FileShare', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (539, N'IsFileSurfVisible', N'0', N'FileSurf', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (540, N'IsGenericVisible', N'0', N'Generic', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (541, N'IsGenericDMSSelfMaintainingVisible', N'0', N'Generic DMS Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (542, N'IsGenericTimeEntrySelfMaintainingVisible', N'0', N'Generic Time Entry Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (543, N'IsInterActionVisible', N'0', N'InterAction', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (544, N'IsInterwovenVisible', N'0', N'Interwoven', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (545, N'IsInterwovenSelfMaintainingVisible', N'0', N'Interwoven Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (546, N'IsIRMVisible', N'0', N'IRM', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (547, N'IsLegalKEYVisible', N'0', N'Legal KEY', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (548, N'IsLegalKEYAdversePartiesVisible', N'0', N'Legal KEY Adverse Parties', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (549, N'IsNetDocumentsVisible', N'0', N'NetDocuments', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (550, N'IsOmniaSelfMaintainingVisible', N'0', N'Omnia Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (551, N'IsOpenVisible', N'0', N'Open', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (552, N'IsProLawVisible', N'0', N'ProLaw', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (553, N'IsSharePointVisible', N'0', N'SharePoint', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (554, N'IsTimeBuilderVisible', N'0', N'TimeBuilder', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (555, N'IsTimeBuilderSelfMaintainingVisible', N'0', N'TimeBuilder Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (556, N'IsTimeKMVisible', N'0', N'TimeKM', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (557, N'IsWebViewVisible', N'0', N'WebView', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (558, N'IsWebViewSelfMaintainingVisible', N'0', N'WebView Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (559, N'IsWebViewTimekeeperVisible', N'0', N'WebView Timekeeper', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (560, N'WallsMessageQueue', N'IntappWBQueue@FRESH1.wm.promuslab.com', NULL, N'General', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (561, N'MatterTeamManagerMessageQueue', N'IntappMTMQueue@FRESH1.wm.promuslab.com', NULL, N'Matter Team Manager', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (562, N'ActivityTrackerMessageQueue', N'', NULL, N'Activity Tracker', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (563, N'APIServiceMessageQueue', N'', NULL, N'API Service', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (564, N'EnabledMTMAutoJoinEmail', N'0', NULL, N'Matter Team Manager', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (565, N'MTMAutoJoinEmailHeaderText', N'Please review the following matter team user addition:', NULL, N'Matter Team Manager', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (566, N'MTMAutoJoinEmailRejectAdditionHyperlinkText', N'Reject Addition', NULL, N'Matter Team Manager', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (567, N'FileShare::AccessRightsXML', N' + + FullControl + ThisFolderSubFoldersAndFiles + FullControl + + + Modify + ThisFolderSubFoldersAndFiles + Modify + + + ReadWrite + ThisFolderSubFoldersAndFiles + Read + Write + + + ReadWriteAndExecute + ThisFolderSubFoldersAndFiles + Read + Write + ExecuteFile + + + ReadAndExecute + ThisFolderSubFoldersAndFiles + ReadAndExecute + + + Read + ThisFolderSubFoldersAndFiles + Read + + + Write + ThisFolderSubFoldersAndFiles + Write + +', NULL, N'FileShare', N'XML', N'{"schema":"FileShareAccessRightsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (568, N'SharePoint::UserRemoteIdSource', N'WindowsNetworkLogon', NULL, N'SharePoint', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (569, N'MatterCenter::Username', N'', NULL, N'MatterCenter', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (570, N'MatterCenter::Password', N'', NULL, N'MatterCenter', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (571, N'MatterCenter::WallUserRights', N'WebDesigner', NULL, N'MatterCenter', N'Select', N'{"values":["WebDesigner", "Contributor", "Reader", "Administrator"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (572, N'MatterCenter::IsActive', N'0', NULL, N'MatterCenter', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (573, N'MatterCenter::ConnectionString', N'', NULL, N'MatterCenter', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (574, N'MatterCenter::WallContractorRights', N'WebDesigner', NULL, N'MatterCenter', N'Select', N'{"values":["WebDesigner", "Contributor", "Reader", "Administrator"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (575, N'MatterCenter::MaxOperationsPerRequest', N'100', NULL, N'MatterCenter', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (576, N'MatterCenter::SecureDocumentsWithUniquePermissions', N'1', NULL, N'MatterCenter', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (577, N'MatterCenter::IgnoredUsersAndGroupsRegex', N'', NULL, N'MatterCenter', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (578, N'MatterCenter::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'MatterCenter', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (579, N'MatterCenter::AuditEmails', N'', NULL, N'MatterCenter', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (580, N'MatterCenter::PowerUsersAndGroupsXML', N'', NULL, N'MatterCenter', N'XML', N'{"schema":"SharePointPowerUsersAndGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (581, N'MatterCenter::DisableBehavior', N'Preserve', NULL, N'MatterCenter', N'Select', N'{"values":["Preserve", "CopyFromParent", "Alter", "PreserveAlter"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (582, N'MatterCenter::DisableAlterPrincipalsXML', N'', NULL, N'MatterCenter', N'XML', N'{"schema":"SharePointDisableAlterPrincipalsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (583, N'IsMatterCenterVisible', N'0', N'Matter Center', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (584, N'MatterCenter::UserRemoteIdSource', N'EmailAddress', NULL, N'MatterCenter', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (585, N'CarpeDiemNG::IsActive', N'0', NULL, N'CarpeDiemNG', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (586, N'CarpeDiemNG::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'CarpeDiemNG', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (587, N'CarpeDiemNG::AuditEmails', N'', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (588, N'CarpeDiemNG::Username', N'', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (589, N'CarpeDiemNG::Password', N'', NULL, N'CarpeDiemNG', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (590, N'CarpeDiemNG::Domain', N'', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (591, N'CarpeDiemNG::WebServiceUrl', N'', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (592, N'CarpeDiemNG::SetRestrictedSecurity', N'0', NULL, N'CarpeDiemNG', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (593, N'IsCarpeDiemNGVisible', N'0', N'Carpe Diem NG', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (594, N'CarpeDiemNGSelfMaintaining::ConnectionString', N'', NULL, N'CarpeDiemNGSelfMaintaining', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (595, N'CarpeDiemNGSelfMaintaining::IsActive', N'0', NULL, N'CarpeDiemNGSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (596, N'CarpeDiemNGSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'CarpeDiemNGSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (597, N'CarpeDiemNGSelfMaintaining::IncludeUnfinalizedTimeEntries', N'0', NULL, N'CarpeDiemNGSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (598, N'IsCarpeDiemNGSelfMaintainingVisible', N'0', N'Carpe Diem NG Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (599, N'CarpeDiemNG::DummyUser', N'Intapp Walls', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (600, N'NetDocuments::MaxLookupTableUpdatesPerRequest', N'1000', NULL, N'NetDocuments', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (601, N'HostedWorksite::IsActive', N'0', NULL, N'HostedWorksite', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (602, N'HostedWorksite::LibraryXML', N'', NULL, N'HostedWorksite', N'XML', N'{"schema":"HostedWorksiteLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (603, N'HostedWorksite::ServerURL', N'', NULL, N'HostedWorksite', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (604, N'HostedWorksite::Username', N'', NULL, N'HostedWorksite', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (605, N'HostedWorksite::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'HostedWorksite', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (606, N'HostedWorksite::AuditEmails', N'', NULL, N'HostedWorksite', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (607, N'HostedWorksite::SecureWorkspacesAndFolders', N'1', NULL, N'HostedWorksite', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (608, N'HostedWorksite::SecureFoundationalPolicies', N'0', NULL, N'HostedWorksite', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (609, N'HostedWorksite::ContractorGrantAccessRight', N'3', NULL, N'HostedWorksite', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (610, N'HostedWorksite::FoundationalGrantAccessRight', N'3', NULL, N'HostedWorksite', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (611, N'HostedWorksite::GrantAccessRight', N'3', NULL, N'HostedWorksite', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (612, N'HostedWorksite::ContractorGroupsOnPrivateObjects', NULL, NULL, N'HostedWorksite', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (613, N'HostedWorksite::DisableInclusionaryType', N'Standard', NULL, N'HostedWorksite', N'Select', N'{"values":["Standard", "Preserve"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (614, N'HostedWorksite::PermissionsXML', N' + + READ + 1 + 1 + + + READWRITE + 2 + 2 + + + FULLACCESS + 3 + 3 + +', NULL, N'HostedWorksite', N'XML', N'{"schema":"HostedWorksitePermissionsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (615, N'IsHostedWorksiteVisible', N'0', N'Hosted Worksite', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (616, N'Interwoven::ContractorGroupsOnPrivateObjects', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (617, N'HostedWorksite::QueueJobTimeout', N'3600', NULL, N'HostedWorksite', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (618, N'HostedWorksite::PowerUserGroupsXML', N'', NULL, N'HostedWorksite', N'XML', N'{"schema":"HostedWorksitePowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (619, N'DTEAxiom::SecureFoundationalPolicies', N'0', NULL, N'DTEAxiom', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (620, N'DTEAxiom::FoundationalGroupContainerIDPrefix', N'ZZCB_', NULL, N'DTEAxiom', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (621, N'DTEAxiom::FoundationalGroupContainerNamePrefix', N'IntApp Foundational Group Container for', NULL, N'DTEAxiom', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (622, N'DTEAxiom::RestrictedMessage', N'You are unable to release time due to a Foundational Wall.', NULL, N'DTEAxiom', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (623, N'GenericInsidersSelfMaintaining::IsActive', N'0', NULL, N'GenericInsidersSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (624, N'GenericInsidersSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'GenericInsidersSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (625, N'GenericInsidersSelfMaintaining::LibraryXML', N'', NULL, N'GenericInsidersSelfMaintaining', N'XML', N'{"schema":"GenericInsidersSelfMaintainingLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (626, N'IsGenericInsidersSelfMaintainingVisible', N'0', N'Generic Insiders Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (627, N'DTEAxiom::FoundationalUseRestricted', N'1', NULL, N'DTEAxiom', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (628, N'AllowedFileExtensions', N' + doc + docx + drf + eml + gif + jpeg + jpg + msg + nrl + pdf + png + ppt + pptx + rtf + tiff + txt + xls + xlsx +', NULL, N'General', N'XML', N'{"schema":"AllowedFileExtensions.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (629, N'PermanentInsidersHeaderText', N'Permanent Insiders List Generated in Compliance with the Market Abuse Regulation', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (630, N'PermanentInsidersHeaderFieldsXml', N' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +', NULL, N'Insiders', N'XML', N'{"schema":"InsidersHeaderFieldsXML.xsd"}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (631, N'PermanentInsidersDefaultAddReason', N'User added to permanent access role.', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (632, N'PermanentInsidersDefaultRemoveReason', N'User removed from permanent access role.', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (633, N'InsidersReportFieldsXml', N' + + + + + + + + + Ascending + +', NULL, N'Insiders', N'XML', N'{"schema":"InsidersReportFieldsXml.xsd"}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (634, N'NetDocuments::PowerUsersAndGroupsXML', N'', NULL, N'NetDocuments', N'XML', N'{"schema":"NetDocumentsPowerUsersAndGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (635, N'NetDocuments::HideGroups', N'0', NULL, N'NetDocuments', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (636, N'NetDocuments::AdminEmailOption', N'Email on failure', NULL, N'NetDocuments', N'Select', N'{"values":["Always email", "Do not email", "Email on failure"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (637, N'NetDocuments::IncrementalRepairCronExpression', N'0 0/5 * * * ?', NULL, N'NetDocuments', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (638, N'EnabledMTHistoryConflictValidation', N'0', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +SET IDENTITY_INSERT [dbo].[Config] OFF +SET IDENTITY_INSERT [dbo].[Entities] ON + +INSERT [dbo].[Entities] ([EntityId], [EntityTypeId], [EntityRemoteSystemId], [EntityDescription], [ParentTypeId], [ParentRemoteSystemId], [ParentDescription], [EntityCustomData], [RecordsSystemId], [FinancialSystemId], [TimeEntrySystemId], [WindowsNetworkLogon], [CustomField1], [CustomField2], [CustomField3], [CustomField4], [CustomField5], [CustomField6], [CustomField7], [CustomField8], [CustomField9], [CustomField10], [IsEnabledForSearch], [Modified], [Created], [MatterOpenStatus], [MatterConfidentialityStatus], [MatterTeamEntityId], [CustomField11], [CustomField12], [CustomField13], [CustomField14], [CustomField15], [CustomField16], [CustomField17], [CustomField18], [CustomField19], [CustomField20], [CustomField21], [CustomField22], [CustomField23], [CustomField24], [CustomField25], [CustomField26], [CustomField27], [CustomField28], [CustomField29], [CustomField30], [EntityDisplayId], [CrmSystemId], [TimeBuilderSystemId], [FileshareRemoteSystemId], [OpenSystemId], [NotificationRoleId]) VALUES (1, 10, N'ALL', N'All clients and matters', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1) +INSERT [dbo].[Entities] ([EntityId], [EntityTypeId], [EntityRemoteSystemId], [EntityDescription], [ParentTypeId], [ParentRemoteSystemId], [ParentDescription], [EntityCustomData], [RecordsSystemId], [FinancialSystemId], [TimeEntrySystemId], [WindowsNetworkLogon], [CustomField1], [CustomField2], [CustomField3], [CustomField4], [CustomField5], [CustomField6], [CustomField7], [CustomField8], [CustomField9], [CustomField10], [IsEnabledForSearch], [Modified], [Created], [MatterOpenStatus], [MatterConfidentialityStatus], [MatterTeamEntityId], [CustomField11], [CustomField12], [CustomField13], [CustomField14], [CustomField15], [CustomField16], [CustomField17], [CustomField18], [CustomField19], [CustomField20], [CustomField21], [CustomField22], [CustomField23], [CustomField24], [CustomField25], [CustomField26], [CustomField27], [CustomField28], [CustomField29], [CustomField30], [EntityDisplayId], [CrmSystemId], [TimeBuilderSystemId], [FileshareRemoteSystemId], [OpenSystemId], [NotificationRoleId]) VALUES (2, 11, N'ALL_USERS', N'All users group', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1) +SET IDENTITY_INSERT [dbo].[Entities] OFF +SET IDENTITY_INSERT [dbo].[EntityTypes] ON + +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (1, N'User', N'Users', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (2, N'Group', N'Groups', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (3, N'Client', N'Clients', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (4, N'Matter', N'Matters', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (6, N'Matter Team', N'Matter Teams', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (7, N'Dynamic Client Group', N'Dynamic Client Groups', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (8, N'Dynamic Matter Group', N'Dynamic Matter Groups', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (9, N'Dynamic User Group', N'Dynamic User Groups', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (10, N'All Clients', N'All Clients', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (11, N'All Users', N'All Users', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (12, N'External User', N'External Users', 1) +SET IDENTITY_INSERT [dbo].[EntityTypes] OFF +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (1, N'Client ID', N'string', N'Client ID', N'Entities', N'EntityRemoteSystemId', 3, 0, NULL, 1, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (2, N'Matter ID', N'string', N'Matter ID', N'Entities', N'EntityRemoteSystemId', 4, 0, NULL, 1, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (3, N'Client Name', N'string', N'Client Name', N'Entities', N'EntityDescription', 3, 0, NULL, 1, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (4, N'Matter Name', N'string', N'Matter Name', N'Entities', N'EntityDescription', 4, 0, NULL, 1, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (5, N'List Open Date', N'date', N'List Opening Date', N'InsidersReports', N'Created', NULL, 0, NULL, 1, N'UTC:yyyy-MM-dd HH:mm', 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (6, N'List Update Date', N'date', N'List Last Updated', N'InsidersReports', N'Modified', NULL, 0, NULL, 1, N'UTC:yyyy-MM-dd HH:mm', 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (8, N'User Name', N'string', N'User Name', N'Entities', N'EntityDescription', 1, 1, NULL, 0, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (9, N'Access Granted', N'date', N'Date Access Granted', N'AccessHistory', N'DateGranted', NULL, 2, NULL, 0, N'UTC:yyyy-MM-dd HH:mm', 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (10, N'Access Revoked', N'date', N'Date Access Revoked', N'AccessHistory', N'DateRevoked', NULL, 3, NULL, 0, N'UTC:yyyy-MM-dd HH:mm', 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (11, N'Access Reason', N'string', N'Reason for Access', N'AccessHistory', N'AccessReason', NULL, 4, NULL, 0, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (12, N'Revoke Reason', N'string', N'Reason for Revoking Access', N'AccessHistory', N'RemovalReason', NULL, 4, N'User has access', 0, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (13, N'List Creation Date', N'date', N'Date and time (creation of the insider list)', N'InsidersReports', N'Created', NULL, 0, NULL, 1, N'UTC:yyyy-MM-dd HH:mm', 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (14, N'List Update Date', N'date', N'Date and time (last update)', N'InsidersReports', N'Modified', NULL, 0, NULL, 1, N'UTC:yyyy-MM-dd HH:mm', 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (15, N'User Name', N'string', N'User Name', N'Entities', N'EntityDescription', 1, 1, NULL, 0, NULL, 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (16, N'Access Granted', N'date', N'Date Access Granted', N'PermanentInsidersAccessHistory', N'DateGranted', NULL, 2, NULL, 0, N'UTC:yyyy-MM-dd HH:mm', 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (17, N'Access Revoked', N'date', N'Date Access Revoked', N'PermanentInsidersAccessHistory', N'DateRevoked', NULL, 3, NULL, 0, N'UTC:yyyy-MM-dd HH:mm', 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (18, N'Access Reason', N'string', N'Reason for Access', N'PermanentInsidersAccessHistory', N'AccessReason', NULL, 4, NULL, 0, NULL, 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (19, N'Revoke Reason', N'string', N'Reason for Revoking Access', N'PermanentInsidersAccessHistory', N'RemovalReason', NULL, 5, N'User has access', 0, NULL, 1) +SET IDENTITY_INSERT [dbo].[InsidersReports] ON + +INSERT [dbo].[InsidersReports] ([InsidersReportsId], [MatterEntityID], [Created], [Modified], [LastRun], [ReportXML]) VALUES (1, NULL, CAST(N'2018-02-03T17:10:07.030' AS DateTime), CAST(N'2018-02-03T17:10:07.030' AS DateTime), CAST(N'2018-02-03T17:10:07.030' AS DateTime), N'Ascending') +SET IDENTITY_INSERT [dbo].[InsidersReports] OFF +SET IDENTITY_INSERT [dbo].[MatterTeamHistoryActivityTypes] ON + +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (0, N'Migration') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (1, N'Addition') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (2, N'Removal') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (3, N'Promotion') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (4, N'Demotion') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (5, N'Update') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (6, N'Addition by Self-Maintaining') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (7, N'Addition by Relationship') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (8, N'Auto Subscription') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (9, N'Subscription') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (10, N'Expiration') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (11, N'Activation') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (12, N'Deactivation') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (13, N'Matter Team Deletion') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (14, N'Removal by Relationship') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (15, N'Manual Activation') +SET IDENTITY_INSERT [dbo].[MatterTeamHistoryActivityTypes] OFF +SET IDENTITY_INSERT [dbo].[MatterTeamRole] ON + +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (1, N'Matter Manager', 1, 0, 1, 0, 0, 1, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (2, N'Matter Partner', 1, 0, 1, 0, 0, 1, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (3, N'Billing Lawyer', 1, 0, 1, 0, 0, 1, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (4, N'Delegated Administrator', 1, 1, 1, 0, 0, 1, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (5, N'Partner', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (6, N'Lawyer', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (7, N'Secretary', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (8, N'Legal Services', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (9, N'IT', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (10, N'Firm Admin', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (11, N'Other', 0, 0, 1, 0, 0, 0, 0) +SET IDENTITY_INSERT [dbo].[MatterTeamRole] OFF +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 1, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 2, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 3, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 4, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 5, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 6, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 1, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 2, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 3, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 4, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 5, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 6, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 1, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 2, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 3, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 4, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 5, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 6, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 1, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 2, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 3, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 4, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 5, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 6, 1, 1) +SET IDENTITY_INSERT [dbo].[Notifications] ON + +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (1, 0, N'[AllSAllUnacknowledgedUsers]', N'

The firm represents [S1ClientMatterNames]. Due to the sensitive nature of the work being performed, the client has requested only named individuals be allowed access to the following:

+

 

+

[AllSideInformation]

+

 

+

Effective immediately:

+

1.Only the team members listed above will be allowed to access any files, databases, etc relating to the above clients/matters. 2.The team members listed above will not share with anyone not listed above any confidential information that was received in the course of their work.

+

 

+

[AcknowledgmentRequest] This screening arrangement will remain effective until further notice; we appreciate your compliance with this memo. Should you have any questions, please contact [ScreeningLawyerNames].

+

 

+

 

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Confidentiality (Outside Counsel Guidelines)', N'Confidentiality Memo: [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (2, 0, N'[AllSAllUsers]', N'

The firm represents [S1ClientMatterNames]. This representation is highly confidential and should not be disclosed or discussed with any other person except as set forth in this memorandum.

+

 

+

We may have obtained or may obtain, through our representation of the above, certain confidential information which, due to heightened sensitivity, should be kept insulated from other lawyers within the firm. As a result, we have internally decided to erect an information barrier between the following team members and the rest of the firm regarding the representation of the below.

+

 

+

[AllSideInformation]

+

 

+

No lawyer, legal assistant or staff member working on the above engagement shall discuss with any lawyer, legal assistant or staff member not working on the above engagement any information relating to his or her respective client engagement. In addition, all files and documents maintained by each member of the team will be kept in a secure fashion and will not be made available to any lawyer not listed above.

+

 

+

Any addition of personnel to any of the teams will be reflected immediately by an appropriate amendment to this memorandum.

+

 

+

Your strict and rigorous adherence to the spirit as well as the letter of each of these procedures and requirements is of the utmost importance both to the interests of our clients and to the integrity and reputation of our firm.

+

 

+

Any questions about these procedures should be referred to [ScreeningLawyerNames].

', 0, 1, NULL, 0, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Confidentiality (Partner Requested; Clients & Matters)', N'Sensitive Matter - [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (3, 0, N'[AllSAllUsers]', N'

The Firm has been engaged to provide legal advice and counsel to [S1ClientMatterNames] ("Client") in connection with various matters. Due to the sensitivity of the work involved, we are implementing a barrier between those persons working for the Client and those persons not working for the Client. The firm personnel who are working on the Client''s matters consist of [S1UserNames] (“Team”).

+

 

+

The Firm has implemented the following screening procedures:

+
    +
  1. All personnel not listed above will be screened in the firm''s client database from the Client.
  2. +
  3. The Team will not discuss or share information concerning the Client with any lawyers or staff outside the Team.
  4. +
  5. Personnel not listed above shall not work on the Client''s matters.
  6. +
  7. [ScreeningLawyerNames] will ensure that additional persons asked to work on the above matters are not subject to other exclusionary screens and are provided with a copy of this memorandum.
  8. +
  9. All Client files will be maintained exclusively in the possession of persons designated by [ScreeningLawyerNames].
  10. +
  11. A copy of this memorandum will be placed in the Firm''s files pertaining to the Client.
  12. +
  13. Any person who knowingly violates the terms of this screen risks sanctions, including possible termination, for violation of these restrictions.
  14. +
+

 Should you have any questions relating to this memorandum, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 0, N'On-Demand', NULL, NULL, NULL, N'Template', NULL, NULL, NULL, N'WB Template - Confidentiality (Partner Requested; Clients)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (4, 0, N'{put your distribution list for entire firm here}', N'

All,

+

 

+

On [EffectiveDate], [S1UserNames] will be joining us as a lateral hire from {put the firm name here}. While there, [S1UserNames] participated in matters that were sometimes adverse to [S2ClientMatterNames]. Therefore, to minimize the appearance of risk, we will be screening [S1UserNames] from any matters that involve [S2ClientMatterNames].

+

 

+

Effective immediately:

+

 

+

[AllSideInformation]

+

 

+
    +
  1. No one at the firm will have any discussion with [S1UserNames] about any matter relating to the above client/matter(s). This will remain in effect even after the representation on this client/matter(s) has been closed to avoid any future conflict regarding representation of clients/matters similar to the above.
  2. +
  3. [S1UserNames] will be prohibited from accessing any information involving [S2ClientMatterNames].
  4. +
  5. No documents relating to [S2ClientMatterNames] will be circulated to [S1UserNames].
  6. +
+

 

+

This screening arrangement will remain effective until further notice; we appreciate your compliance with this memo. Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Lateral (to Firm)', N'Lateral hire screening memo', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (5, 0, N'[S1AllUsers]', N'

[S1UserNames],

+

 

+

The firm is advising on [S2ClientMatterNames] (“Restricted Matter”). You have indicated that you have acted adverse to this Restricted Matter or a related matter(s) at your previous firm and may therefore have obtained confidential information which might reasonably be expected to be material to the firm’s client(s) in the Restricted Matter. Accordingly, the firm has implemented an information barrier which prohibits you from working on the Restricted Matter or discussing your prior work in relation to that matter.

+

 

+

Please click the acknowledgement below by which you confirm that you:

+

 

+
    +
  1. undertake that you have not brought any documents to the firm which relate to the Restricted Matter and will not discuss your prior work in relation to the Restricted Matter with anyone at the firm;
  2. +
  3. understand that if you are asked to work on the Restricted Matter, you will decline immediately and inform a risk and compliance lawyer;
  4. +
  5. understand that you will be denied access to the electronic file for the Restricted Matter and undertake that you will not seek to obtain information about the Restricted matter, and
  6. +
  7. have not previously had any discussions or exchanged documents that would result in a breach of this information barrier.
  8. +
+

 

+

[AcknowledgmentRequest] There must be strict adherence to these procedures. Any breach of this information barrier may result in disciplinary action. Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Lateral (to Lateral)', N'Lateral hire screening memo', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (6, 0, N'[AllSAllUsers]', N'

All,
 

+

Notice is being given of a potential conflict arising from the firm’s representation of [S1ClientMatterNames] and [S2ClientMatterNames]. We have received waivers from both clients, and our continued representation of both is contingent on our establishing a screen between the teams working on either client. To ensure that information is not inadvertently shared between the teams, effective immediately:

+

 

+

[AllSideInformation]

+
    +
  1. No one working on matters relating to one of the above named clients will share with any one working on the other named client any confidential information that was received in the course of their work.
  2. +
  3. Members of each team will be prohibited from accessing any files, databases, etc relating to the opposite team.
  4. +
  5. No member of either team can become a member of the opposite team. If you are currently working on both teams, notify your manager and [ScreeningLawyerNames] immediately so we can assign you appropriately.
  6. +
  7. Support staff may not be shared across the two teams.
  8. +
+

 

+

This screening arrangement will remain effective until further notice; we appreciate your compliance with this memo. [AcknowledgmentRequest] Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Information Barrier (Client Waivers)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (7, 0, N'[AllSAllUsers]', N'

All,

+

 

+

The firm represents [S1ClientMatterNames]. In addition, the Firm is representing [S2ClientMatterNames]. We may have obtained or may obtain certain confidential information from one team that should be kept insulated from the other. As a result, we have internally decided to erect an “ethical wall” between the two teams. To ensure that information is not inadvertently shared between the teams, effective immediately:

+

 

+

[AllSideInformation]

+

 

+

These representations are highly confidential and should not be disclosed or discussed with any other person except as set forth in this memorandum. No lawyer, legal assistant or staff member working on one side shall discuss with any lawyer, legal assistant or staff member working on the other side any information relating to his or her respective client or matter engagement. In addition, all files and documents maintained by each member of the respective teams will be kept in a secure fashion and will not be made available to any member of the other client team.

+

 

+

Any addition of personnel to any of the teams will be reflected immediately by an appropriate amendment to this memorandum.

+

 

+

Your strict and rigorous adherence to the spirit as well as the letter of each of these procedures and requirements is of the utmost importance both to the interests of our clients and to the integrity and reputation of our firm.

+

 

+

Any questions about these procedures should be referred to [ScreeningLawyerNames].

+

 

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Information Barrier (2 Client/Matter Teams)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (8, 0, N'[AllSAllUsers]', N'

The firm has been engaged to provide legal advice and counsel to [S1ClientMatterNames] in connection with various matters. The firm also represents [S2ClientMatterNames] in multiple matters.

+

 

+

While there is no conflict, out of an abundance of caution, we are implementing a wall between those persons working for [S1ClientMatterNames] and [S2ClientMatterNames]. The firm personnel are as follows:

+

 

+

[AllSideInformation]

+

 

+

The firm has implemented the following screening procedures:

+
    +
  1. The [S1ClientMatterNames] team members will be screened in the firm''s client database from all [S2ClientMatterNames] matters. The [S2ClientMatterNames] team members will be screened in the firm''s client database from all [S1ClientMatterNames] matters.
  2. +
  3. The [S1ClientMatterNames] team members will not discuss or share information concerning [S1ClientMatterNames] with the [S2ClientMatterNames] team. The [S2ClientMatterNames] team members will not discuss or share information concerning [S2ClientMatterNames] with the [S1ClientMatterNames] team members.
  4. +
  5. The [S1ClientMatterNames] team members shall not work on any [S2ClientMatterNames] matters. The [S2ClientMatterNames] team members shall not work on any [S1ClientMatterNames] matters.
  6. +
  7. All [S1ClientMatterNames] and [S2ClientMatterNames] files will be maintained in the possession of the appropriate team members.
  8. +
  9. A copy of this memorandum will be placed in the firm''s files pertaining to [S1ClientMatterNames] and [S2ClientMatterNames].
  10. +
  11. Any person who knowingly violates the terms of this screen risks sanctions, including possible termination, for violation of these restrictions.
  12. +
+

 

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Information Barrier (2 Client Teams)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (9, 0, N'[S1AllUsers]', N'

{This memo is meant to be distributed to one side. Make a copy and edit the memo accordingly for each of the other teams.}

+

All,

+

 

+

The firm has been engaged to provide legal advice and counsel on [S1ClientMatterNames] ("Matter"). {Insert explanation of why this matter team needs to be walled from the other matter teams.} Therefore, out of an abundance of caution, we are implementing walls between you and the teams working on the other matters, [S2ClientMatterNames] and [S3ClientMatterNames] {insert additional sides as necessary}(“Other Matters"). The firm personnel are as follows:

+

 

+

[AllSideInformation]

+

 

+

Matter team members shall comply with the following:

+
    +
  1. No documents or information (including but not limited to physical or electronic documents, email or other correspondence) concerning the Matter may be circulated, shown to, or discussed with anyone other than members of the matter team, their secretaries, and risk and compliance lawyers.
  2. +
  3. Any physical files and documents relating to the Matter should be kept within the offices of team members or in secure cabinets allocated to them. When no longer required for current use, physical files and documents should be placed in storage with access restricted to the team members and risk and compliance lawyers. Team members and secretaries must handle all work, filing and other information relating to the Matter and such information should not be left out in public areas or desks when not in use.
  4. +
  5. All electronic documents (whenever created) relating to the Matter must be profiled with the appropriate matter number and saved to the correct matter workspace in the document management system to ensure that these documents are correctly restricted to the correct matter team, their secretaries, and risk and compliance lawyers.
  6. +
  7. The matter team includes secretaries who carry out work on the Matter. Secretaries in the team may not work on the Other Matters, even as emergency cover, save with the advance consent of a risk and compliance lawyer.
  8. +
  9. Each Matter team member will ensure that his or her secretary is aware of the obligations imposed by the terms of this memorandum. By confirming compliance with this memorandum, each team member also expressly confirms there have been no prior communications of any kind which, had they taken place after the date of this memorandum, would have constituted a breach of this information barrier.
  10. +
  11. All members of the Matter team confirm that they do not have material confidential information regarding the Other Matters and undertake not to seek to obtain any information about the Other Matters.
  12. +
+

 

+

[AcknowledgmentRequest] If anyone at the firm violates the terms of this information barrier he or she will be subject to disciplinary action which may include termination of his or her employment. Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Information Barrier (Multi-sided Matter Teams)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (10, 0, N'{insert firm-wide email here}', N'

All,

+

 

+

[S1UserNames] has recently joined the firm as a contract lawyer. [S1UserNames] will be working on [S1ClientMatterNames] and will not be allowed access to any confidential information for any other clients and matters. Effective immediately:

+

 

+

[AllSideInformation]

+

 

+

No one working on matters other than the ones listed above may share with [S1UserNames] any confidential information that was received in the course of their work.

+

 

+

This screening arrangement will remain effective until further notice; we appreciate your compliance with this memo. Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 0, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Contractor', N'Screening procedures for Contractor', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (11, 0, N'[AllSAllUsers]', N'

A claim was filed on [EffectiveDate] against the firm arising out of our representing [S1ClientMatterNames]. We are under a legal obligation to preserve all information potentially relevant to the issues raised in the claim. By this memorandum, the individuals listed below must immediately preserve and protect such information. This information may currently be stored on computer systems as electronic files, emails, or otherwise stored as hard copies or in some other tangible form. Effective immediately, the data and custodians associated with the below client/matter are subject to this legal hold:

+

 

+

[AllSideInformation]

+

 

+

The obligations under this legal hold are continuing and apply equally to information created after, as well as before, this memorandum was delivered. In addition:

+

 

+
    +
  • The aforementioned custodians are instructed to identify places where potentially relevant electronic and paper documents, folders, and other information may be stored and make appropriate arrangement for its preservation.
  • +
  • The aforementioned custodians are directed to suspend practices regarding the retention and/or destruction of data pertaining to the client/matter listed above.
  • +
  • The IT department is directed to immediately disable the deletion of “archived emails” for the listed individuals.
  • +
+

 

+

Keep in mind that as your emails are subject to a legal hold, they may be subject to disclosure to other parties and the public. Please exercise caution and discretion in your communications. Please contact [ScreeningLawyerNames] if you have any questions or believe that anybody else should be added to the above list.

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer],{add IT team here}', NULL, NULL, N'WB Template - Internal Legal Hold', N'Legal Hold Memo: [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (12, 0, N'[AllSAllUsers]', N'

[EventInformation]. As this is pertaining to a confidential matter(s), please inform [ScreeningLawyerNames] or the Risk team immediately if this is incorrect. The revised policy membership is as follows:

+

 

+

[AllSideInformation]

', 0, 1, NULL, 0, N'Event-Driven', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: New User Added to Confidentiality Policy', N'Alert - User added to [Name]', 1, 16, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (13, 0, N'[AllSAllUsers]', N'

[EventInformation]. If you believe this change was made in error, please contact [ScreeningLawyerNames] or the Risk team immediately. The revised policy membership is as follows:

+

 

+

[AllSideInformation]

', 0, 1, NULL, 0, N'Event-Driven', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: New User Added to Ethical Wall', N'Alert - User added to [Name]', 1, 16, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (14, 0, N'[AllSAllUsers]', N'

[EventInformation]. If you believe this change was made in error, please contact [ScreeningLawyerNames] or the Risk team immediately. The revised membership is as follows:

+

 

+

[AllSideInformation]

', 0, 1, NULL, 0, N'Event-Driven', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: User Removed from Policy', N'Alert - User removed from [Name]', 1, 32, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (15, 0, N'[AllSAllUnacknowledgedUsers]', N'

This is a reminder to acknowledge the [Name] memo that was sent out earlier. For your reference, below is the original memo:

+

 

+

{insert memo content here and include the acknowledgement request}

+

 

', 0, 1, NULL, 1, N'Scheduled', CAST(N'2012-11-30T00:00:00.000' AS DateTime), 7, N'D', N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: Reminder to Acknowledge', N'Action required - Sensitive Matter - [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (16, 0, N'[AllSAllUsers]', N'

This is a reminder that the [Name] memo circulated 6 months ago is still in effect. For your reference, below is the original memo:

+

 

+

{copy memo content here but do not include acknowledgement request}

', 0, 1, NULL, 0, N'Scheduled', CAST(N'2012-11-30T00:00:00.000' AS DateTime), 6, N'M', N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: Reminder Policy Still in Effect', N'Reminder that [Name] is still in effect', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (17, 0, N'[ScreeningLawyer]', N'

[ScreeningLawyerNames],

+

 

+

[EventInformation]. Information pertaining to:

+

[S1ClientMatterNames]

+

[S2ClientMatterNames]

+

will be publicly accessible, unless there is another policy in place with regards to this, within the Firm effective immediately. Please see policy description below:

+

 

+

[AllGeneralInformation]

+

[AllSideInformation]

+

 

+

Please let the Risk team know if you have any questions regarding any of the foregoing.

', 0, 1, NULL, 0, N'Event-Driven', NULL, NULL, NULL, N'Template', NULL, NULL, NULL, N'WB Template - Alert: Policy Disabled', N'Alert - [Name] has been disabled', 1, 12, 0, 0) +SET IDENTITY_INSERT [dbo].[Notifications] OFF +SET IDENTITY_INSERT [dbo].[PolicyCategories] ON + +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (1, N'Inclusionary', N'Confidentiality', 1) +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (2, N'Exclusionary', N'Ethical Wall', 1) +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (3, N'Contractor', N'Contractor', 1) +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (4, N'Legal Hold', N'Legal Hold', 2) +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (5, N'Foundational Policy', N'Foundational', 3) +SET IDENTITY_INSERT [dbo].[PolicyCategories] OFF +SET IDENTITY_INSERT [dbo].[PolicyCategoryGroups] ON + +INSERT [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId], [Name]) VALUES (1, N'Walls & Security') +INSERT [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId], [Name]) VALUES (2, N'Legal Holds') +INSERT [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId], [Name]) VALUES (3, N'Foundational Policies') +SET IDENTITY_INSERT [dbo].[PolicyCategoryGroups] OFF +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (1, N'Wall ID', 1, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (2, N'Wall Name', 1, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (3, N'Wall Type', 1, N'string', N'Type of wall (e.g. Inclusionary Ethical Wall)', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (5, N'Screening Lawyers', 1, N'string', N'Names of the screening lawyers or supervisors for the policy type', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (6, N'Notes', 1, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (7, N'Created By User Name', 1, N'string', N'User name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'UserName', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (8, N'Created By Name', 1, N'string', N'Full name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'Name', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (9, N'Created Date', 1, N'date', N'Date and time when the wall was created', N'Walls', N'Created', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (10, N'Modified Date', 1, N'date', N'Date and time when the wall was last modified', N'Walls', N'Modified', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (11, N'Enabled', 1, N'bool', N'Flag indicating whether the wall is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (12, N'Expiration Date', 1, N'date', N'Date and time when the wall is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (13, N'Wall Definition Data', 1, N'string', N'The complete list of all clients, matters, users, or groups appearing on the wall', N'WallSideEntities', NULL, 1, 0, 1, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (14, N'Client ID or Name', 1, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (15, N'Matter ID or Name', 1, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (16, N'User ID or Name', 1, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (17, N'Group ID or Name', 1, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (18, N'Client ID', 2, N'string', N'Client ID', N'Walls', N'ClientId', 1, 1, 1, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (19, N'Wall ID', 2, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (20, N'Wall Name', 2, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (21, N'Wall Type', 2, N'string', N'Type of wall (e.g. Inclusionary Ethical Wall)', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (23, N'Screening Lawyers', 2, N'string', N'Names of the screening lawyers or supervisors for the policy type', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (24, N'Notes', 2, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (25, N'Created By User Name', 2, N'string', N'User name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'UserName', 1, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (26, N'Created By Name', 2, N'string', N'Full name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'Name', 1, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (27, N'Created Date', 2, N'date', N'Date and time when the wall was created', N'Walls', N'Created', 1, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (28, N'Modified Date', 2, N'date', N'Date and time when the wall was last modified', N'Walls', N'Modified', 1, 1, 0, 28) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (29, N'Enabled', 2, N'bool', N'Flag indicating whether the wall is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 29) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (30, N'Expiration Date', 2, N'date', N'Date and time when the wall is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 32) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (31, N'Wall Definition Data', 2, N'string', N'The complete list of all clients, matters, users, or groups appearing on the wall', N'WallSideEntities', NULL, 1, 0, 1, 33) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (33, N'Matter ID or Name', 2, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 35) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (34, N'User ID or Name', 2, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (35, N'Group ID or Name', 2, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 37) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (36, N'User ID', 3, N'string', N'User ID', N'Walls', N'UserId', 1, 1, 1, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (37, N'Wall ID', 3, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 37) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (38, N'Wall Name', 3, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 38) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (39, N'Wall Type', 3, N'string', N'Type of wall (e.g. Inclusionary Ethical Wall)', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 39) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (41, N'Screening Lawyers', 3, N'string', N'Names of the screening lawyers or supervisors for the policy type', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 41) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (42, N'Notes', 3, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 42) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (43, N'Created By User Name', 3, N'string', N'User name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'UserName', 1, 1, 0, 43) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (44, N'Created By Name', 3, N'string', N'Full name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'Name', 1, 1, 0, 44) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (45, N'Created Date', 3, N'date', N'Date and time when the wall was created', N'Walls', N'Created', 1, 1, 0, 45) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (46, N'Modified Date', 3, N'date', N'Date and time when the wall was last modified', N'Walls', N'Modified', 1, 1, 0, 46) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (47, N'Enabled', 3, N'bool', N'Flag indicating whether the wall is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 47) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (48, N'Expiration Date', 3, N'date', N'Date and time when the wall is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 50) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (49, N'Wall Definition Data', 3, N'string', N'The complete list of all clients, matters, users, or groups appearing on the wall', N'WallSideEntities', NULL, 1, 0, 1, 51) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (50, N'Client ID or Name', 3, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 52) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (51, N'Matter ID or Name', 3, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 53) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (53, N'Group ID or Name', 3, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 55) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (54, N'Wall ID', 13, N'int', N'ID of the wall in Intapp Walls', N'Log', N'WallId', 1, 1, 0, 54) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (55, N'Wall Name', 13, N'string', N'Name of the wall', N'Log', N'WallName', 1, 1, 1, 55) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (56, N'User Name', 13, N'string', N'User name of the Intapp Walls user who caused the log message', N'Log', N'UserLogin', 1, 1, 0, 57) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (57, N'Name', 13, N'string', N'Full name of the Intapp Walls user who caused the log message', N'Log', N'UserName', 1, 1, 1, 58) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (58, N'Log Message Type', 13, N'string', N'The type of log message, e.g. Maintenance', N'Log', N'LogMessageType', 1, 1, 1, 59) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (59, N'Log Message', 13, N'string', N'The log message', N'Log', N'LogMessage', 1, 1, 1, 60) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (60, N'Created Date', 13, N'date', N'Date and time when the message was logged', N'Log', N'Created', 1, 1, 1, 61) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (61, N'Wall ID', 5, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 61) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (62, N'Wall Name', 5, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 62) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (63, N'User ID', 5, N'string', N'User ID', N'Entities', N'EntityRemoteSystemId', 1, 1, 0, 63) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (64, N'User Name', 5, N'string', N'Full name of the user', N'Entities', N'EntityDescription', 1, 1, 1, 64) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (65, N'User Email Address', 5, N'string', N'Email address of the user', N'Entities', N'EntityCustomData', 1, 1, 0, 65) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (66, N'Acknowledged', 5, N'bool', N'Flag indicating whether or not the wall has been acknowledged by the user', N'Walls', N'isAcknowledged', 1, 1, 1, 66) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (67, N'Acknowledgment Requested Date', 5, N'date', N'The date the acknowledgment notice was sent to the user', N'Walls', N'DateOfNotice', 1, 1, 1, 67) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (68, N'Acknowledged Date', 5, N'date', N'The date the user acknowledged the wall', N'Walls', N'DateOfAcceptance', 1, 1, 1, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (69, N'Wall Enabled', 5, N'bool', N'Flag indicating whether or not the wall is enabled', N'Walls', N'isEnabled', 1, 1, 0, 69) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (70, N'Date Added', 3, N'date', N'Date and time when the user was added to the wall', N'Walls', N'DateAdded', 1, 1, 0, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (71, N'Added by Self-Maintaining', 3, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Walls', N'WasAddedBySelfMaintaining', 1, 1, 0, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (72, N'Client Name', 2, N'string', N'Client name', N'Walls', N'ClientDesc', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (73, N'User Name', 3, N'string', N'User name', N'Walls', N'UserDesc', 1, 1, 0, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (76, N'Matter Team ID or Name', 1, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (77, N'Matter Team ID or Name', 2, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 38) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (78, N'Matter Team ID or Name', 3, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 56) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (79, N'Dynamic Client Group ID or Name', 1, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (80, N'Dynamic Matter Group ID or Name', 1, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (81, N'Dynamic User Group ID or Name', 1, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (82, N'Dynamic Client Group ID or Name', 2, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 39) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (83, N'Dynamic Matter Group ID or Name', 2, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 40) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (84, N'Dynamic User Group ID or Name', 2, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 41) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (85, N'Dynamic Client Group ID or Name', 3, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 57) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (86, N'Dynamic Matter Group ID or Name', 3, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 58) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (87, N'Dynamic User Group ID or Name', 3, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 59) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (88, N'User ID', 7, N'string', N'User ID', N'Users', N'UserRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (89, N'User Name', 7, N'string', N'User name', N'Users', N'UserDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (90, N'Wall ID', 7, N'int', N'ID of the wall', N'Users', N'WallId', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (91, N'Wall Name', 7, N'string', N'Name of the wall', N'Users', N'WallName', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (92, N'Wall Modified Date', 7, N'date', N'Date and time when the wall was last modified', N'Users', N'WallModifiedDate', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (93, N'Wall Created Date', 7, N'date', N'Date and time when the wall was created', N'Users', N'WallCreatedDate', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (94, N'Wall Type', 7, N'string', N'Type of the wall (e.g. Inclusionary Ethical Wall)', N'Users', N'WallType', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (95, N'Most Recent Add to Wall Date', 7, N'date', N'The most recent wall side add date for the user', N'Users', N'MaxAddedDate', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (96, N'Added by Self-Maintaining', 7, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Users', N'WasAddedBySelfMaintaining', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (97, N'User ID', 8, N'string', N'User ID', N'Users', N'UserRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (98, N'User Name', 8, N'string', N'User name', N'Users', N'UserDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (99, N'Client ID', 8, N'string', N'Client ID', N'Clients', N'ClientRemoteId', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (100, N'Client Name', 8, N'string', N'Client name', N'Clients', N'ClientDescription', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (101, N'Matter ID', 8, N'string', N'Matter ID', N'Matters', N'MatterRemoteId', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (102, N'Matter Name', 8, N'string', N'Matter name', N'Matters', N'MatterDescription', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (103, N'Wall Allowing Access ID', 8, N'int', N'ID of the wall allowing access', N'AllowingWalls', N'WallId', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (104, N'Wall Allowing Access Name', 8, N'string', N'Name of the wall allowing access', N'AllowingWalls', N'Name', 1, 1, 1, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (105, N'Wall Allowing Access Modified Date', 8, N'date', N'Date and time when the wall allowing access was last modified', N'AllowingWalls', N'Modified', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (106, N'Wall Allowing Access Created Date', 8, N'date', N'Date and time when the wall allowing access was created', N'AllowingWalls', N'Created', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (107, N'Wall Allowing Access Type', 8, N'string', N'Type of the wall allowing access (e.g. Inclusionary Ethical Wall)', N'AllowingWallAccessTypes', N'WallAccessType', 1, 1, 0, 14) +GO +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (108, N'Wall Denying Access ID', 8, N'int', N'ID of the wall denying access', N'DenyingWalls', N'WallId', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (109, N'Wall Denying Access Name', 8, N'string', N'Name of the wall denying access', N'DenyingWalls', N'Name', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (110, N'Wall Denying Access Modified Date', 8, N'date', N'Date and time when the wall denying access was last modified', N'DenyingWalls', N'Modified', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (111, N'Wall Denying Access Created Date', 8, N'date', N'Date and time when the wall denying access was created', N'DenyingWalls', N'Created', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (112, N'Wall Denying Access Type', 8, N'string', N'Type of the wall denying access (e.g. Exclusionary Ethical Wall)', N'DenyingWallAccessTypes', N'WallAccessType', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (113, N'Most Recent Add to Wall Date', 8, N'date', N'The most recent wall side add date for the entity', N'Report', N'AddedDate', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (114, N'Added by Self-Maintaining', 8, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Report', N'WasAddedBySelfMaintaining', 1, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (115, N'User ID', 9, N'string', N'User ID', N'Users', N'UserRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (116, N'User Name', 9, N'string', N'User name', N'Users', N'UserDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (117, N'Client ID', 9, N'string', N'Client ID', N'Clients', N'ClientRemoteId', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (118, N'Client Name', 9, N'string', N'Client name', N'Clients', N'ClientDescription', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (119, N'Matter ID', 9, N'string', N'Matter ID', N'Matters', N'MatterRemoteId', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (120, N'Matter Name', 9, N'string', N'Matter name', N'Matters', N'MatterDescription', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (121, N'Wall Denying Access ID', 9, N'int', N'ID of the wall denying access', N'DenyingWalls', N'WallId', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (122, N'Wall Denying Access Name', 9, N'string', N'Name of the wall denying access', N'DenyingWalls', N'Name', 1, 1, 1, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (123, N'Wall Denying Access Modified Date', 9, N'date', N'Date and time when the wall denying access was last modified', N'DenyingWalls', N'Modified', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (124, N'Wall Denying Access Created Date', 9, N'date', N'Date and time when the wall denying access was created', N'DenyingWalls', N'Created', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (125, N'Wall Denying Access Type', 9, N'string', N'Type of the wall denying access (e.g. Exclusionary Ethical Wall)', N'DenyingWallAccessTypes', N'WallAccessType', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (126, N'Conflicting Wall ID', 9, N'int', N'ID of the conflicting wall', N'ConflictingWalls', N'WallId', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (127, N'Conflicting Wall Name', 9, N'string', N'Name of the conflicting wall', N'ConflictingWalls', N'Name', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (128, N'Conflicting Wall Modified Date', 9, N'date', N'Date and time when the conflicting wall was last modified', N'ConflictingWalls', N'Modified', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (129, N'Conflicting Wall Created Date', 9, N'date', N'Date and time when the conflicting wall was created', N'ConflictingWalls', N'Created', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (130, N'Conflicting Wall Type', 9, N'string', N'Type of the conflicting wall (e.g. Inclusionary Ethical Wall)', N'ConflictingWallAccessTypes', N'WallAccessType', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (131, N'Most Recent Add to Wall Date', 9, N'date', N'The most recent wall side add date for the entity', N'Report', N'AddedDate', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (132, N'Added by Self-Maintaining', 9, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Report', N'WasAddedBySelfMaintaining', 1, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (133, N'Client ID', 10, N'string', N'Client ID', N'Clients', N'ClientRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (134, N'Client Name', 10, N'string', N'Client name', N'Clients', N'ClientDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (135, N'Matter ID', 10, N'string', N'Matter ID', N'Matters', N'MatterRemoteId', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (136, N'Matter Name', 10, N'string', N'Matter name', N'Matters', N'MatterDescription', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (137, N'Allowed User ID', 10, N'string', N'Allowed User ID', N'AllowedUsers', N'UserRemoteId', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (138, N'Allowed User Name', 10, N'string', N'Allowed user name', N'AllowedUsers', N'UserDescription', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (139, N'Denied User ID', 10, N'string', N'Denied User ID', N'DeniedUsers', N'UserRemoteId', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (140, N'Denied User Name', 10, N'string', N'Denied user name', N'DeniedUsers', N'UserDescription', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (141, N'Shared Resource', 10, N'string', N'Shared resource name', N'Report', N'Resource', 1, 1, 1, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (142, N'Shared Resource Type', 10, N'string', N'Shared resource type', N'Report', N'ResourceType', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (143, N'Wall Allowing Access ID', 10, N'int', N'ID of the wall allowing access', N'AllowingWalls', N'WallId', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (144, N'Wall Allowing Access Name', 10, N'string', N'Name of the wall allowing access', N'AllowingWalls', N'Name', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (145, N'Wall Allowing Access Modified Date', 10, N'date', N'Date and time when the wall allowing access was last modified', N'AllowingWalls', N'Modified', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (146, N'Wall Allowing Access Created Date', 10, N'date', N'Date and time when the wall allowing access was created', N'AllowingWalls', N'Created', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (147, N'Wall Allowing Access Type', 10, N'string', N'Type of the wall allowing access (e.g. Inclusionary Ethical Wall)', N'AllowingWallAccessTypes', N'WallAccessType', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (148, N'Wall Denying Access ID', 10, N'int', N'ID of the wall denying access', N'DenyingWalls', N'WallId', 1, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (149, N'Wall Denying Access Name', 10, N'string', N'Name of the wall denying access', N'DenyingWalls', N'Name', 1, 1, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (150, N'Wall Denying Access Modified Date', 10, N'date', N'Date and time when the wall denying access was last modified', N'DenyingWalls', N'Modified', 1, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (151, N'Wall Denying Access Created Date', 10, N'date', N'Date and time when the wall denying access was created', N'DenyingWalls', N'Created', 1, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (152, N'Wall Denying Access Type', 10, N'string', N'Type of the wall denying access (e.g. Exclusionary Ethical Wall)', N'DenyingWallAccessTypes', N'WallAccessType', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (153, N'Most Recent Add to Wall Date', 10, N'date', N'The most recent wall side add date for the entity', N'Report', N'AddedDate', 1, 1, 1, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (154, N'Added by Self-Maintaining', 10, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Report', N'WasAddedBySelfMaintaining', 1, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (155, N'Client ID', 11, N'string', N'Client ID', N'Clients', N'ClientRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (156, N'Client Name', 11, N'string', N'Client name', N'Clients', N'ClientDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (157, N'Matter ID', 11, N'string', N'Matter ID', N'Matters', N'MatterRemoteId', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (158, N'Matter Name', 11, N'string', N'Matter name', N'Matters', N'MatterDescription', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (159, N'Denied User ID', 11, N'string', N'Denied user ID', N'DeniedUsers', N'UserRemoteId', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (160, N'Denied User Name', 11, N'string', N'Denied user name', N'DeniedUsers', N'UserDescription', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (161, N'Conflicting User ID', 11, N'string', N'Conflicting user ID', N'ConflictingUsers', N'UserRemoteId', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (162, N'Conflicting User Name', 11, N'string', N'Conflicting user name', N'ConflictingUsers', N'UserDescription', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (163, N'Shared Resource', 11, N'string', N'Shared resource name', N'Report', N'Resource', 1, 1, 1, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (164, N'Shared Resource Type', 11, N'string', N'Shared resource type', N'Report', N'ResourceType', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (165, N'Denied User Wall ID', 11, N'int', N'ID of the wall occupied by denied user', N'DenyingWalls', N'WallId', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (166, N'Denied User Wall Name', 11, N'string', N'Name of the wall occupied by denied user', N'DenyingWalls', N'Name', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (167, N'Denied User Wall Modified Date', 11, N'date', N'Date and time when the wall occupied by denied user was last modified', N'DenyingWalls', N'Modified', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (168, N'Denied User Wall Created Date', 11, N'date', N'Date and time when the wall occupied by denied user was created', N'DenyingWalls', N'Created', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (169, N'Denied User Wall Type', 11, N'string', N'Type of the wall occupied by denied user (e.g. Exclusionary Ethical Wall)', N'DenyingWallAccessTypes', N'WallAccessType', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (170, N'Conflicting User Wall ID', 11, N'int', N'ID of the wall occupied by conflicting user', N'ConflictingWalls', N'WallId', 1, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (171, N'Conflicting User Wall Name', 11, N'string', N'Name of the wall occupied by conflicting user', N'ConflictingWalls', N'Name', 1, 1, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (172, N'Conflicting User Wall Modified Date', 11, N'date', N'Date and time when the wall occupied by conflicting user was last modified', N'ConflictingWalls', N'Modified', 1, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (173, N'Conflicting User Wall Created Date', 11, N'date', N'Date and time when the wall occupied by conflicting user was created', N'ConflictingWalls', N'Created', 1, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (174, N'Conflicting User Wall Type', 11, N'string', N'Type of the wall occupied by conflicting user (e.g. Inclusionary Ethical Wall)', N'ConflictingWallAccessTypes', N'WallAccessType', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (175, N'Most Recent Add to Wall Date', 11, N'date', N'The most recent wall side add date for the entity', N'Report', N'AddedDate', 1, 1, 1, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (176, N'Added by Self-Maintaining', 11, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Report', N'WasAddedBySelfMaintaining', 1, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (177, N'Self Maintaining', 1, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (178, N'Self Maintaining', 2, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 42) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (179, N'Self Maintaining', 3, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 60) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (180, N'Self Maintaining', 5, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 71) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (181, N'Matter ID', 12, N'string', N'ID of the matter for the matter team', N'Matters', N'MatterRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (182, N'Matter Name', 12, N'string', N'Name of the matter for the matter team', N'Matters', N'MatterDescription', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (183, N'Status', 12, N'bool', N'The open/closed status of the matter', N'Matters', N'MatterOpenStatus', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (184, N'Confidentiality Status', 12, N'string', N'The confidentiality status of the matter', N'Matters', N'MatterConfidentialityStatus', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (185, N'Modified Date', 12, N'date', N'Date and time when the matter team was last modified', N'MatterTeams', N'MatterTeamModified', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (186, N'Created Date', 12, N'date', N'Date and time when the matter team was created', N'MatterTeams', N'MatterTeamCreated', 1, 1, 1, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (187, N'Self-Maintaining', 12, N'bool', N'Flag indicating whether the matter team is self-maintaining', N'MatterTeamFields', N'IsSelfMaintained', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (188, N'User Name', 12, N'string', N'The name of the user on the matter team', N'Users', N'UserDescription', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (189, N'User ID', 12, N'string', N'The ID of the user on the matter team', N'Users', N'UserRemoteId', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (190, N'Matter Role', 12, N'string', N'The matter role of the user on the matter team', N'MatterTeamUsers', N'RoleName', 1, 1, 1, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (191, N'Expiration Date', 12, N'date', N'Expiration date of the user on the matter team', N'MatterTeamUsers', N'ExpirationDate', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (192, N'Reason', 12, N'string', N'The reason the user is on the matter team', N'MatterTeamUsers', N'Reason', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (193, N'Active', 12, N'bool', N'Flag indicating whether the user is active or inactive on the matter team', N'MatterTeamUsers', N'Active', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (194, N'Matter ID', 14, N'string', N'ID of the matter for the matter team', N'Matters', N'MatterRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (195, N'Matter Name', 14, N'string', N'Name of the matter for the matter team', N'Matters', N'MatterDescription', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (196, N'Name', 14, N'string', N'Full name of the user who caused the log message', N'GroupEntityLog', N'User', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (197, N'Log Message Type', 14, N'string', N'The type of log message, e.g. Maintenance', N'GroupEntityLog', N'LogMessageType', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (198, N'Log Message', 14, N'string', N'The log message', N'GroupEntityLog', N'LogMessage', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (199, N'Created Date', 14, N'date', N'Date and time when the message was logged', N'GroupEntityLog', N'Created', 1, 1, 1, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (200, N'Effective Date', 1, N'date', N'Date and time when the wall is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (201, N'Effective Date', 2, N'date', N'Date and time when the wall is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 31) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (202, N'Effective Date', 3, N'date', N'Date and time when the wall is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 49) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (203, N'Modified By Name', 1, N'string', N'Full name of the Intapp Walls user who last modified the wall', N'ModifierUsers', N'Name', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (204, N'Modified By Name', 2, N'string', N'Full name of the Intapp Walls user who last modified the wall', N'ModifierUsers', N'Name', 1, 1, 0, 28) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (205, N'Modified By Name', 3, N'string', N'Full name of the Intapp Walls user who last modified the wall', N'ModifierUsers', N'Name', 1, 1, 0, 46) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (206, N'Matter ID', 15, N'string', N'Matter ID', N'Walls', N'MatterId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (207, N'Matter Name', 15, N'string', N'Matter name', N'Walls', N'MatterDescription', 1, 1, 0, 2) +GO +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (208, N'Client ID', 15, N'string', N'Client ID', N'Walls', N'ClientId', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (209, N'Client Name', 15, N'string', N'Client name', N'Walls', N'ClientDescription', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (210, N'Matter Open Status', 15, N'bool', N'The open/closed status of the matter', N'Walls', N'MatterOpenStatus', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (211, N'Matter Confidentiality', 15, N'string', N'The confidentiality status of the matter', N'Walls', N'MatterConfidentialityStatus', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (212, N'Wall ID', 15, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (213, N'Wall Name', 15, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (214, N'Wall Type', 15, N'string', N'Type of wall (e.g. Inclusionary Ethical Wall)', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (215, N'Screening Lawyers', 15, N'string', N'Names of the screening lawyers or supervisors for the policy type', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (216, N'Notes', 15, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (217, N'Created By User Name', 15, N'string', N'User name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'UserName', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (218, N'Created By Name', 15, N'string', N'Full name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'Name', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (219, N'Created Date', 15, N'date', N'Date and time when the wall was created', N'Walls', N'Created', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (220, N'Modified Date', 15, N'date', N'Date and time when the wall was last modified', N'Walls', N'Modified', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (221, N'Modified By Name', 15, N'string', N'Full name of the Intapp Walls user who last modified the wall', N'ModifierUsers', N'Name', 1, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (222, N'Enabled', 15, N'bool', N'Flag indicating whether the wall is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (223, N'Effective Date', 15, N'date', N'Date and time when the wall is set to active', N'Walls', N'EffectiveDate', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (224, N'Expiration Date', 15, N'date', N'Date and time when the wall is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (225, N'Wall Definition Data', 15, N'string', N'The complete list of all clients, matters, users, or groups appearing on the wall', N'WallSideEntities', NULL, 1, 0, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (226, N'Client ID or Name', 15, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (227, N'User ID or Name', 15, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (228, N'Group ID or Name', 15, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (229, N'Matter Team ID or Name', 15, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (230, N'Dynamic Client Group ID or Name', 15, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (231, N'Dynamic Matter Group ID or Name', 15, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (232, N'Dynamic User Group ID or Name', 15, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 28) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (233, N'Self Maintaining', 15, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 29) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (234, N'Legal Hold ID', 16, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (235, N'Legal Hold Name', 16, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (236, N'Legal Hold Type', 16, N'string', N'Type of legal hold', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (237, N'Hold Supervisors', 16, N'string', N'Names of the hold supervisors', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (238, N'Notes', 16, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (239, N'Created By User Name', 16, N'string', N'User name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'UserName', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (240, N'Created By Name', 16, N'string', N'Full name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'Name', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (241, N'Created Date', 16, N'date', N'Date and time when the legal hold was created', N'Walls', N'Created', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (242, N'Modified', 16, N'date', N'Date and time when the legal hold was last modified', N'Walls', N'Modified', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (243, N'Enabled', 16, N'bool', N'Flag indicating whether the legal hold is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (244, N'Effective Date', 16, N'date', N'Date and time when the legal hold is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (245, N'Expiration Date', 16, N'date', N'Date and time when the legal hold is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (246, N'Legal Hold Definition Data', 16, N'string', N'The complete list of all clients, matters, users, or groups appearing on the legal hold', N'WallSideEntities', NULL, 1, 0, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (247, N'Client ID or Name', 16, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (248, N'Matter ID or Name', 16, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (249, N'User ID or Name', 16, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (250, N'Group ID or Name', 16, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (251, N'Matter Team ID or Name', 16, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (252, N'Dynamic Client Group ID or Name', 16, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (253, N'Dynamic Matter Group ID or Name', 16, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (254, N'Dynamic User Group ID or Name', 16, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (255, N'Self Maintaining', 16, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (256, N'Client ID', 17, N'string', N'Client ID', N'Walls', N'ClientId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (257, N'Client Name', 17, N'string', N'Client name', N'Walls', N'ClientDesc', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (258, N'Legal Hold ID', 17, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (259, N'Legal Hold Name', 17, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (260, N'Legal Hold Type', 17, N'string', N'Type of legal hold', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (261, N'Hold Supervisors', 17, N'string', N'Names of the hold supervisors', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (262, N'Notes', 17, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (263, N'Created By User Name', 17, N'string', N'User name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'UserName', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (264, N'Created By Name', 17, N'string', N'Full name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'Name', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (265, N'Created Date', 17, N'date', N'Date and time when the legal hold was created', N'Walls', N'Created', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (266, N'Modified', 17, N'date', N'Date and time when the legal hold was last modified', N'Walls', N'Modified', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (267, N'Enabled', 17, N'bool', N'Flag indicating whether the legal hold is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (268, N'Effective Date', 17, N'date', N'Date and time when the legal hold is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (269, N'Expiration Date', 17, N'date', N'Date and time when the legal hold is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (270, N'Legal Hold Definition Data', 17, N'string', N'The complete list of all clients, matters, users, or groups appearing on the legal hold', N'WallSideEntities', NULL, 1, 0, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (271, N'Matter ID or Name', 17, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (272, N'User ID or Name', 17, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (273, N'Group ID or Name', 17, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (274, N'Matter Team ID or Name', 17, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (275, N'Dynamic Client Group ID or Name', 17, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (276, N'Dynamic Matter Group ID or Name', 17, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (277, N'Dynamic User Group ID or Name', 17, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (278, N'Self Maintaining', 17, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (279, N'User ID', 18, N'string', N'User ID', N'Walls', N'UserId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (280, N'Date Added', 18, N'date', N'Date and time when the user was added to the wall', N'Walls', N'DateAdded', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (281, N'Added by Self-Maintaining', 18, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Walls', N'WasAddedBySelfMaintaining', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (282, N'User Name', 18, N'string', N'User name', N'Walls', N'UserDesc', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (283, N'Legal Hold ID', 18, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (284, N'Legal Hold Name', 18, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (285, N'Legal Hold Type', 18, N'string', N'Type of legal hold', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (286, N'Hold Supervisors', 18, N'string', N'Names of the hold supervisors', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (287, N'Notes', 18, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (288, N'Created By User Name', 18, N'string', N'User name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'UserName', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (289, N'Created By Name', 18, N'string', N'Full name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'Name', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (290, N'Created Date', 18, N'date', N'Date and time when the legal hold was created', N'Walls', N'Created', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (291, N'Modified', 18, N'date', N'Date and time when the legal hold was last modified', N'Walls', N'Modified', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (292, N'Enabled', 18, N'bool', N'Flag indicating whether the legal hold is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (293, N'Effective Date', 18, N'date', N'Date and time when the legal hold is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (294, N'Expiration Date', 18, N'date', N'Date and time when the legal hold is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (295, N'Legal Hold Definition Data', 18, N'string', N'The complete list of all clients, matters, users, or groups appearing on the legal hold', N'WallSideEntities', NULL, 1, 0, 1, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (296, N'Matter ID or Name', 18, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (297, N'User ID or Name', 18, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (298, N'Group ID or Name', 18, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (299, N'Matter Team ID or Name', 18, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (300, N'Dynamic Client Group ID or Name', 18, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (301, N'Dynamic Matter Group ID or Name', 18, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (302, N'Dynamic User Group ID or Name', 18, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (303, N'Self Maintaining', 18, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (304, N'Matter ID', 19, N'string', N'Matter ID', N'Walls', N'MatterId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (305, N'Matter Name', 19, N'string', N'Matter name', N'Walls', N'MatterDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (306, N'Client ID', 19, N'string', N'Client ID', N'Walls', N'ClientId', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (307, N'Client Name', 19, N'string', N'Client name', N'Walls', N'ClientDescription', 1, 1, 0, 4) +GO +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (308, N'Matter Open Status', 19, N'bool', N'The open/closed status of the matter', N'Walls', N'MatterOpenStatus', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (309, N'Matter Confidentiality', 19, N'string', N'The confidentiality status of the matter', N'Walls', N'MatterConfidentialityStatus', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (310, N'Legal Hold ID', 19, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (311, N'Legal Hold Name', 19, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (312, N'Legal Hold Type', 19, N'string', N'Type of legal hold', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (313, N'Hold Supervisors', 19, N'string', N'Names of the hold supervisors', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (314, N'Notes', 19, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (315, N'Created By User Name', 19, N'string', N'User name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'UserName', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (316, N'Created By Name', 19, N'string', N'Full name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'Name', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (317, N'Created Date', 19, N'date', N'Date and time when the legal hold was created', N'Walls', N'Created', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (318, N'Modified Date', 19, N'date', N'Date and time when the legal hold was last modified', N'Walls', N'Modified', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (319, N'Modified User', 19, N'string', N'User name the legal hold was last modified by', N'ModifierUsers', N'Name', 1, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (320, N'Enabled', 19, N'bool', N'Flag indicating whether the legal hold is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (321, N'Effective Date', 19, N'date', N'Date and time when the legal hold is set to active', N'Walls', N'EffectiveDate', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (322, N'Expiration Date', 19, N'date', N'Date and time when the legal hold is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (323, N'Legal Hold Definition Data', 19, N'string', N'The complete list of all clients, matters, users, or groups appearing on the legal hold', N'WallSideEntities', NULL, 1, 0, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (324, N'Client ID or Name', 19, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (325, N'User ID or Name', 19, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (326, N'Group ID or Name', 19, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (327, N'Matter Team ID or Name', 19, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (328, N'Dynamic Client Group ID or Name', 19, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (329, N'Dynamic Matter Group ID or Name', 19, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (330, N'Dynamic User Group ID or Name', 19, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 28) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (331, N'Self Maintaining', 19, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 29) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (332, N'Legal Hold ID', 20, N'int', N'ID of the legal hold in Intapp Walls', N'Log', N'WallId', 1, 1, 0, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (333, N'Legal Hold Name', 20, N'string', N'Name of the legal hold', N'Log', N'WallName', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (334, N'User Name', 20, N'string', N'User name of the Intapp Walls user who caused the log message', N'Log', N'UserLogin', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (335, N'Name', 20, N'string', N'Full name of the Intapp Walls user who caused the log message', N'Log', N'UserName', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (336, N'Log Message Type', 20, N'string', N'The type of log message, e.g. Maintenance', N'Log', N'LogMessageType', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (337, N'Log Message', 20, N'string', N'The log message', N'Log', N'LogMessage', 1, 1, 1, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (338, N'Created Date', 20, N'date', N'Date and time when the message was logged', N'Log', N'Created', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (339, N'Legal Hold Enabled', 20, N'bool', N'Flag indicating whether or not the legal hold is enabled', N'Log', N'WallEnabled', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (340, N'Legal Hold ID', 21, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (341, N'Legal Hold Name', 21, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (342, N'User ID', 21, N'string', N'User ID', N'Entities', N'EntityRemoteSystemId', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (343, N'User Name', 21, N'string', N'Full name of the user', N'Entities', N'EntityDescription', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (344, N'User Email Address', 21, N'string', N'Email address of the user', N'Entities', N'EntityCustomData', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (345, N'Most Recent Add Date', 21, N'date', N'Date and time when the user was added to the legal hold', N'Walls', N'MostRecentAddDate', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (346, N'Acknowledged', 21, N'bool', N'Flag indicating whether or not the legal hold has been acknowledged by the user', N'Walls', N'IsAcknowledged', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (347, N'Acknowledgment Requested Date', 21, N'date', N'The date the acknowledgment notice was sent to the user', N'Walls', N'DateOfNotice', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (348, N'Acknowledged Date', 21, N'date', N'The date the user acknowledged the legal hold', N'Walls', N'DateOfAcceptance', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (349, N'Acknowledgment Sent', 21, N'bool', N'Flag indicating whether or not an acknowledgment notice has been sent to the user', N'Walls', N'IsAcknowledgmentSent', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (350, N'Notification Name', 21, N'string', N'The name of the notification sent to the user', N'Walls', N'NotificationName', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (351, N'Notification Send Date', 21, N'date', N'The date the notification was sent to the user', N'Walls', N'NotificationSentDate', 1, 1, 1, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (352, N'Most Recent Request', 21, N'bool', N'Flag indicating whether the notification contains the most recent acknowledgment notice sent to the user.', N'Walls', N'IsMostRecentRequest', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (353, N'Legal Hold Enabled', 21, N'bool', N'Flag indicating whether or not the legal hold is enabled', N'Walls', N'isEnabled', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (354, N'Self Maintaining', 21, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (355, N'Most Recent Add Date', 5, N'date', N'Date and time when the user was added to the policy', N'Walls', N'MostRecentAddDate', 1, 1, 0, 65) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (356, N'Acknowledgment Sent', 5, N'bool', N'Flag indicating whether or not an acknowledgment notice has been sent to the user', N'Walls', N'IsAcknowledgmentSent', 1, 1, 1, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (357, N'Notification Name', 5, N'string', N'The name of the notification sent to the user', N'Walls', N'NotificationName', 1, 1, 0, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (358, N'Notification Send Date', 5, N'date', N'The date the notification was sent to the user', N'Walls', N'NotificationSentDate', 1, 1, 1, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (360, N'Most Recent Request', 5, N'bool', N'Flag indicating whether the notification contains the most recent acknowledgment notice sent to the user.', N'Walls', N'IsMostRecentRequest', 1, 1, 0, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (361, N'Policy ID', 22, N'int', N'ID of the policy in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (362, N'Policy Name', 22, N'string', N'Name of the policy', N'Walls', N'Name', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (363, N'User ID', 22, N'string', N'User ID', N'Entities', N'EntityRemoteSystemId', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (364, N'User Name', 22, N'string', N'Full name of the user', N'Entities', N'EntityDescription', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (365, N'User Email Address', 22, N'string', N'Email address of the user', N'Entities', N'EntityCustomData', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (366, N'Most Recent Add Date', 22, N'date', N'Date and time when the user was added to the policy', N'Walls', N'MostRecentAddDate', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (367, N'Acknowledged', 22, N'bool', N'Flag indicating whether or not the policy has been acknowledged by the user', N'Walls', N'IsAcknowledged', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (368, N'Acknowledgment Requested Date', 22, N'date', N'The date the acknowledgment notice was sent to the user', N'Walls', N'DateOfNotice', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (369, N'Acknowledged Date', 22, N'date', N'The date the user acknowledged the legal hold', N'Walls', N'DateOfAcceptance', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (370, N'Acknowledgment Sent', 22, N'bool', N'Flag indicating whether or not an acknowledgment notice has been sent to the user', N'Walls', N'IsAcknowledgmentSent', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (371, N'Notification Name', 22, N'string', N'The name of the notification sent to the user', N'Walls', N'NotificationName', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (372, N'Notification Send Date', 22, N'date', N'The date the notification was sent to the user', N'Walls', N'NotificationSentDate', 1, 1, 1, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (373, N'Most Recent Request', 22, N'bool', N'Flag indicating whether the notification contains the most recent acknowledgment notice sent to the user.', N'Walls', N'IsMostRecentRequest', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (374, N'Policy Enabled', 22, N'bool', N'Flag indicating whether or not the policy is enabled', N'Walls', N'IsEnabled', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (375, N'Self Maintaining', 22, N'bool', N'Flag indicating whether the policy is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (376, N'Enabled', 13, N'bool', N'Flag indicating whether the wall is enabled', N'Log', N'WallEnabled', 1, 1, 0, 55) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (377, N'Wall Enabled', 7, N'bool', N'Flag indicating whether the wall is enabled', N'Users', N'WallIsEnabled', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (378, N'Content Range Start', 16, N'date', N'Date and time value used to limit content preservation to data created after this date.', N'Walls', N'SecurityStartDate', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (379, N'Content Range End', 16, N'date', N'Date and time value used to limit content preservation to data created before this date.', N'Walls', N'SecurityEndDate', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (380, N'Content Range Start', 17, N'date', N'Date and time value used to limit content preservation to data created after this date.', N'Walls', N'SecurityStartDate', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (381, N'Content Range End', 17, N'date', N'Date and time value used to limit content preservation to data created before this date.', N'Walls', N'SecurityEndDate', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (382, N'Content Range Start', 18, N'date', N'Date and time value used to limit content preservation to data created after this date.', N'Walls', N'SecurityStartDate', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (383, N'Content Range End', 18, N'date', N'Date and time value used to limit content preservation to data created before this date.', N'Walls', N'SecurityEndDate', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (384, N'Content Range Start', 19, N'date', N'Date and time value used to limit content preservation to data created after this date.', N'Walls', N'SecurityStartDate', 1, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (385, N'Content Range End', 19, N'date', N'Date and time value used to limit content preservation to data created before this date.', N'Walls', N'SecurityEndDate', 1, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (386, N'Type', 23, N'string', N'Type of message generated', N'ErrorLog', N'LogLevel', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (387, N'Log ID', 23, N'int', N'Unique Id of log message', N'ErrorLog', N'ErrorLogId', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (388, N'Service', 23, N'string', N'The Intapp Walls component that generated the log message', N'ErrorLog', N'ServiceType', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (389, N'Log Message', 23, N'string', N'The text of the system log entry', N'ErrorLog', N'LogMessage', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (390, N'Date', 23, N'date', N'Date and time when the log message was created', N'ErrorLog', N'Created', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (391, N'Log Exception', 23, N'string', N'Details about the action that generated an error or warning', N'ErrorLog', N'LogException', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (392, N'Notes', 5, N'string', N'Wall notes', N'Walls', N'Notes', 1, 1, 0, 72) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (393, N'Notes', 21, N'string', N'Legal hold notes', N'Walls', N'Notes', 1, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (394, N'Notes', 22, N'string', N'Policy notes', N'Walls', N'Notes', 1, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (395, N'Foundational Group Id', 1, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (396, N'Foundational Group Id', 2, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 43) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (397, N'Foundational Group Id', 3, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 61) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (398, N'Foundational Group Id', 5, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 73) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (400, N'Foundational Group Id', 10, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (401, N'Foundational Group Id', 11, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (402, N'Foundational Group Id', 13, N'string', N'ID of the security group created by the foundational wall', N'Log', N'FoundationalGroupId', 1, 1, 0, 62) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (403, N'Foundational Group Id', 15, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 30) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (404, N'Deleted', 1, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (405, N'Deleted', 2, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 30) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (406, N'Deleted', 3, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 48) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (407, N'Wall Deleted', 5, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 70) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (408, N'Deleted', 15, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (409, N'Deleted', 13, N'bool', N'Flag indicating whether the policy is deleted', N'Log', N'WallDeleted', 1, 1, 0, 56) +GO +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (410, N'Wall Deleted', 7, N'bool', N'Flag indicating whether the policy is deleted', N'Users', N'WallIsDeleted', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (411, N'Deleted', 16, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (412, N'Deleted', 17, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (413, N'Deleted', 18, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (414, N'Deleted', 19, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (415, N'Legal Hold Deleted', 21, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (416, N'Legal Hold Deleted', 20, N'bool', N'Flag indicating whether the legal hold is deleted', N'Log', N'WallDeleted', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (417, N'Policy Deleted', 22, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 15) +SET IDENTITY_INSERT [dbo].[Reports] ON + +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (10, 1, 1, N'Walls by Type', CAST(N'2018-02-03T17:06:22.130' AS DateTime), 0, N'11equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (11, 1, 2, N'Walls by Client', CAST(N'2018-02-03T17:06:22.160' AS DateTime), 0, N'29equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (12, 1, 3, N'Walls by User', CAST(N'2018-02-03T17:06:22.227' AS DateTime), 0, N'47equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (13, 1, 13, N'Prevented Breach Log', CAST(N'2018-02-03T17:06:22.307' AS DateTime), 0, N'58containsbreach1000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (14, 1, 1, N'Walls Modified in Last 30 Days', CAST(N'2018-02-03T17:06:22.447' AS DateTime), 0, N'11equal110within_last301000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (15, 1, 1, N'Walls Expiring in Next 30 Days', CAST(N'2018-02-03T17:06:22.573' AS DateTime), 0, N'11equal112within_next301000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (16, 1, 5, N'All Acknowledgments', CAST(N'2018-02-03T17:06:25.083' AS DateTime), 0, N'360equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (17, 1, 5, N'Outstanding Acknowledgments', CAST(N'2018-02-03T17:06:25.127' AS DateTime), 0, N'360equal166equal01000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (18, 1, 5, N'Outstanding Acknowledgments Older than 30 Days', CAST(N'2018-02-03T17:06:25.227' AS DateTime), 0, N'360equal166equal067prior_to301000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (19, 1, 3, N'Self-Maintaining Activity', CAST(N'2018-02-03T17:07:06.123' AS DateTime), 0, N'71equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (20, 1, 1, N'Recent Activity', CAST(N'2018-02-03T17:07:39.833' AS DateTime), 0, N'10DESC15') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (21, 1, 13, N'Release Exception Log', CAST(N'2018-02-03T17:07:48.013' AS DateTime), 0, N'58containsRelease Exception1000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (22, 1, 15, N'Walls By Matter', CAST(N'2018-02-03T17:08:12.697' AS DateTime), 0, N' + + + + + + + 222equal1 + 0equal + 0equal + + + 1000 + 206ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (23, 1, 17, N'Legal Holds By Client', CAST(N'2018-02-03T17:08:24.717' AS DateTime), 0, N' + + + + + + + 267equal1 + 0equal + 0equal + + + 1000 + 256ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (24, 1, 18, N'Legal Holds By User', CAST(N'2018-02-03T17:08:24.740' AS DateTime), 0, N' + + + + + + + 292equal1 + 0equal + 0equal + + + 1000 + 279ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (25, 1, 19, N'Legal Holds By Matter', CAST(N'2018-02-03T17:08:24.767' AS DateTime), 0, N' + + + + + + + 320equal1 + 0equal + 0equal + + + 1000 + 304ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (26, 1, 20, N'Legal Hold Log', CAST(N'2018-02-03T17:08:24.790' AS DateTime), 0, N' + + + + + + + + 1000 + 333ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (27, 1, 21, N'Legal Hold Acknowledgments', CAST(N'2018-02-03T17:08:24.817' AS DateTime), 0, N' + + + + + + + 352equal1 + 0equal + 0equal + + + 1000 + 340ASC +') +SET IDENTITY_INSERT [dbo].[Reports] OFF +INSERT [dbo].[ReportsConflictingLatestUpdateDate] ([ReportTypeId], [LatestUpdateDate], [UpdateStartTime]) VALUES (8, CAST(N'2018-02-03T17:07:33.603' AS DateTime), NULL) +INSERT [dbo].[ReportsConflictingLatestUpdateDate] ([ReportTypeId], [LatestUpdateDate], [UpdateStartTime]) VALUES (9, CAST(N'2018-02-03T17:07:33.640' AS DateTime), NULL) +INSERT [dbo].[ReportsConflictingLatestUpdateDate] ([ReportTypeId], [LatestUpdateDate], [UpdateStartTime]) VALUES (10, CAST(N'2018-02-03T17:07:33.663' AS DateTime), NULL) +INSERT [dbo].[ReportsConflictingLatestUpdateDate] ([ReportTypeId], [LatestUpdateDate], [UpdateStartTime]) VALUES (11, CAST(N'2018-02-03T17:07:33.690' AS DateTime), NULL) +SET IDENTITY_INSERT [dbo].[ReportTypes] ON + +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (1, N'Walls', N'Report on general data related to walls. Each row of the report corresponds to one wall.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (2, N'Walls by Client', N'Report on data related to walls organized by client. Each row of the report corresponds one client-wall combination.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (3, N'Walls by User', N'Report on data related to walls organized by user. Each row of the report corresponds one user-wall combination.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (5, N'Wall Acknowledgments', N'Report on data related to user acknowledgments. Each row of the report corresponds to one user acknowledgment for a wall.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (6, N'Wall Definition Warnings', N'Reports which help identify walls that may put information or people in conflicting configurations.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (7, N'Users on Multiple Sides of a Wall', N'Report of users that exist on more than one side of a wall.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (8, N'Explicit Conflicting Access', N'Report on data related to user explicit conflicting access. Each row of the report corresponds to one explicit access conflict.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (9, N'Implicit Conflicting Access', N'Report on data related to user implicit conflicting access. Each row of the report corresponds to one implicit access conflict.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (10, N'Explicit Conflicting Shared Resources', N'Report on data related to related users explicit conflicting access. Each row of the report corresponds to one explicit access conflict.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (11, N'Implicit Conflicting Shared Resources', N'Report on data related to related users implicit conflicting access. Each row of the report corresponds to one implicit access conflict.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (12, N'Matter Teams by User', N'Report on data related to matter teams organized by user. Each row of the report corresponds one user-matter team combination.', NULL, NULL) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (13, N'Wall Logs', N'Report on data related to Intapp Walls log. Each row of the report corresponds to one log message.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (14, N'Matter Team Logs', N'Reports on data related to Matter Team Manager log. Each row of the report corresponds to one log message.', NULL, NULL) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (15, N'Walls by Matter', N'Report on data related to walls organized by matter. Each row of the report corresponds one matter-wall combination.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (16, N'Legal Holds by Type', N'Report on general data related to legal holds. Each row of the report corresponds to one legal hold.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (17, N'Legal Holds by Client', N'Report on data related to legal holds organized by client. Each row of the report corresponds one client-legal hold combination.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (18, N'Legal Holds by User', N'Report on data related to legal holds organized by user. Each row of the report corresponds one user-legal hold combination.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (19, N'Legal Holds by Matter', N'Report on data related to legal holds organized by matter. Each row of the report corresponds one matter-legal hold combination', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (20, N'Legal Hold Logs', N'Report on data contained within the legal hold logs. Each row of the report corresponds to one log message.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (21, N'Legal Hold Acknowledgments', N'Report on data related to user acknowledgments. Each row of the report corresponds to one user acknowledgment for a legal hold.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (22, N'Acknowledgments', N'Report on data related to user acknowledgments. Each row of the report corresponds to one user acknowledgment.', NULL, NULL) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (23, N'System Logs', N'Report on system log messages. Each row of the report corresponds to an entry in the system log.', NULL, NULL) +SET IDENTITY_INSERT [dbo].[ReportTypes] OFF +SET IDENTITY_INSERT [dbo].[RepositoryTypes] ON + +INSERT [dbo].[RepositoryTypes] ([RepositoryTypeId], [RepositoryType]) VALUES (1, N'IWOV') +INSERT [dbo].[RepositoryTypes] ([RepositoryTypeId], [RepositoryType]) VALUES (2, N'DM5') +INSERT [dbo].[RepositoryTypes] ([RepositoryTypeId], [RepositoryType]) VALUES (3, N'BOX') +SET IDENTITY_INSERT [dbo].[RepositoryTypes] OFF +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ActivityRetentionPolicyTrigger', N'WallsJobs', N'0 0 2 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'CalculateStatisticsTrigger', N'WallsJobs', N'0 03 3 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'DeleteObjectReleaseExceptionsTrigger', N'WallsJobs', N'0 2/5 * * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ExecuteTrackersTrigger', N'WallsJobs', N'0 0/5 * * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ExpireMatterTeamMembersTrigger', N'WallsJobs', N'0 30 1 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'PerformMaintenanceTrigger', N'WallsJobs', N'0 0 3 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'RecalculateDEGMembershipsTrigger', N'WallsJobs', N'0 0 4 ? * TUE', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ReloadSettingsTrigger', N'WallsJobs', N'0 0 1/1 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ReportTrigger', N'WallsJobs', N'0 0/5 * * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'SendDigestNotificationsTrigger', N'WallsJobs', N'0 0 1 ? * SAT', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'SendNotificationTrigger', N'WallsJobs', N'0 2/5 * * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'UpdateAuditReportsTrigger', N'WallsJobs', N'0 0 2 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'ActivityRetentionPolicyJob', N'WallsJobs', N'Job that fires activity retention policy to the intermediate db.', N'Com.IntApp.Walls.Scheduler.Jobs.ActivityRetentionPolicyJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'CalculateStatisticsJob', N'WallsJobs', N'Job that fires calculation of activity statistics.', N'Com.IntApp.Walls.Scheduler.Jobs.CalculateStatisticsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'DeleteObjectReleaseExceptionsJob', N'WallsJobs', N'Job that deletes object release exceptions that are expired', N'Com.IntApp.Walls.Scheduler.Jobs.DeleteObjectReleaseExceptionsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'ExecuteTrackersJob', N'WallsJobs', N'Job that fires execution of trackers.', N'Com.IntApp.Walls.Scheduler.Jobs.ExecuteTrackersJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'ExpireMatterTeamMembersJob', N'WallsJobs', N'Job that removes expired members and demotes expired admins of matter teams', N'Com.IntApp.Walls.Scheduler.Jobs.ExpireMatterTeamMembersJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000010903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F020000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A6563740000000010050000000200000006070000000D69676E6F72654578706972656406080000000D69676E6F7265496E76616C696410060000000200000006090000000130060A00000001300B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'JobInitializationPlugin_xml_GeneratedJobs_xml', N'JobInitializationPlugin', NULL, N'Quartz.Job.FileScanJob, Quartz', N'0', N'1', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000010903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F040000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A6563740000000010050000000300000006070000001746494C455F5343414E5F4C495354454E45525F4E414D4506080000000946494C455F4E414D450609000000124C4153545F4D4F4449464945445F54494D45100600000003000000060A0000001B4A6F62496E697469616C697A6174696F6E506C7567696E5F786D6C060B00000042433A5C50726F6772616D2046696C65732028783836295C496E746170705C57425363686564756C6572536572766963655C47656E6572617465644A6F62732E786D6C080DA0E09BB7DA6ED5880B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'PerformMaintenance', N'WallsJobs', N'Job that performs maintenance for Intapp Walls', N'Com.IntApp.Walls.Scheduler.Jobs.PerformMaintenanceJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000010903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F070000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A6563740000000010050000000700000006070000001F69676E6F726555706461746552656C6174696F6E7368697050616972696E6706080000002369676E6F7265457874656E73696F6E735175657279526573756C7473436C65616E757006090000001C69676E6F7265456E61626C696E6745666665637469766557616C6C73060A0000001A69676E6F7265416C65727444657461696C735472696D6D696E67060B0000002069676E6F726555706461746557616C6C53656375726974795374617475736573060C0000001B69676E6F726544697361626C696E674578706972656457616C6C73060D0000001769676E6F726553797374656D4C6F675472696D6D696E67100600000007000000060E0000000130060F000000013006100000000130061100000001300612000000013006130000000130061400000001300B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'RecalculateDEGMembershipsJob', N'WallsJobs', N'Job that recalculate Dynamic Entity Group membership.', N'Com.IntApp.Walls.Scheduler.Jobs.RecalculateDEGMembershipsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'ReloadSettingsJob', N'WallsJobs', N'Job that updates the jobs configuration', N'Com.IntApp.Walls.Scheduler.Jobs.ReloadSettingsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'RunReportsJob', N'WallsJobs', N'Job that runs scheduled reports', N'Com.IntApp.Walls.Scheduler.Jobs.RunReportsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'SendDigestNotificationsJob', N'WallsJobs', N'Job that fires digest notification sending.', N'Com.IntApp.Walls.Scheduler.Jobs.SendDigestNotificationsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'SendNotificationsJob', N'WallsJobs', N'Job that sends scheduled notifications.', N'Com.IntApp.Walls.Scheduler.Jobs.SendNotificationsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'UpdateAuditReportsJob', N'WallsJobs', N'Job that updates data for audit reports', N'Com.IntApp.Walls.Scheduler.Jobs.UpdateAuditReportsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'CALENDAR_ACCESS') +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'JOB_ACCESS') +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'MISFIRE_ACCESS') +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'STATE_ACCESS') +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'TRIGGER_ACCESS') +INSERT [dbo].[SCHEDULER_SIMPLE_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [REPEAT_COUNT], [REPEAT_INTERVAL], [TIMES_TRIGGERED]) VALUES (N'JobInitializationPlugin_xml_GeneratedJobs_xml', N'JobInitializationPlugin', -1, 60000, 369) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ActivityRetentionPolicyTrigger', N'WallsJobs', N'ActivityRetentionPolicyJob', N'WallsJobs', N'0', NULL, 636537384000000000, -1, 5, N'WAITING', N'CRON', 636536808460000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'CalculateStatisticsTrigger', N'WallsJobs', N'CalculateStatisticsJob', N'WallsJobs', N'0', NULL, 636537421800000000, -1, 5, N'WAITING', N'CRON', 636536808460000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'DeleteObjectReleaseExceptionsTrigger', N'WallsJobs', N'DeleteObjectReleaseExceptionsJob', N'WallsJobs', N'0', NULL, 636536842200000000, 636536839200000000, 5, N'WAITING', N'CRON', 636536808460000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ExecuteTrackersTrigger', N'WallsJobs', N'ExecuteTrackersJob', N'WallsJobs', N'0', NULL, 636536841000000000, 636536838000000000, 5, N'WAITING', N'CRON', 636536808460000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ExpireMatterTeamMembersTrigger', N'WallsJobs', N'ExpireMatterTeamMembersJob', N'WallsJobs', N'0', NULL, 636537366000000000, -1, 5, N'WAITING', N'CRON', 636536808460000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'JobInitializationPlugin_xml_GeneratedJobs_xml', N'JobInitializationPlugin', N'JobInitializationPlugin_xml_GeneratedJobs_xml', N'JobInitializationPlugin', N'1', NULL, 636536840260000000, 636536839660000000, 5, N'WAITING', N'SIMPLE', 636536618860000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'PerformMaintenanceTrigger', N'WallsJobs', N'PerformMaintenance', N'WallsJobs', N'0', NULL, 636537420000000000, -1, 5, N'WAITING', N'CRON', 636536808460000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'RecalculateDEGMembershipsTrigger', N'WallsJobs', N'RecalculateDEGMembershipsJob', N'WallsJobs', N'0', NULL, 636540912000000000, -1, 5, N'WAITING', N'CRON', 636536808460000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ReloadSettingsTrigger', N'WallsJobs', N'ReloadSettingsJob', N'WallsJobs', N'0', NULL, 636536844000000000, -1, 5, N'WAITING', N'CRON', 636536808460000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ReportTrigger', N'WallsJobs', N'RunReportsJob', N'WallsJobs', N'0', NULL, 636536841000000000, 636536838000000000, 5, N'WAITING', N'CRON', 636536808460000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'SendDigestNotificationsTrigger', N'WallsJobs', N'SendDigestNotificationsJob', N'WallsJobs', N'0', NULL, 636538212000000000, -1, 5, N'WAITING', N'CRON', 636536808460000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'SendNotificationTrigger', N'WallsJobs', N'SendNotificationsJob', N'WallsJobs', N'0', NULL, 636536842200000000, 636536839200000000, 5, N'WAITING', N'CRON', 636536808460000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'UpdateAuditReportsTrigger', N'WallsJobs', N'UpdateAuditReportsJob', N'WallsJobs', N'0', NULL, 636537384000000000, -1, 5, N'WAITING', N'CRON', 636536808460000000, 0, NULL, 0, NULL) +INSERT [dbo].[TrackerCategories] ([TrackerCategoryId], [Name]) VALUES (1, N'Custom') +INSERT [dbo].[TrackerCategories] ([TrackerCategoryId], [Name]) VALUES (2, N'Template') +INSERT [dbo].[TrackerCategories] ([TrackerCategoryId], [Name]) VALUES (3, N'Linked') +SET IDENTITY_INSERT [dbo].[TrackerTypes] ON + +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (1, N'Custom', 1, N'custom.png', N'Standard Summary/Threshold not linked to a Policy', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (2, N'Template - Same Policy Side', 2, N'template_sameside.png', N'For clients/matters on each policy side, monitor activity for users on the SAME policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (3, N'Template - Other Policy Sides', 2, N'template_otherside.png', N'For clients/matters on each policy side, monitor activity for users on the OTHER policy sides', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (4, N'Template - All Except Policy Side', 2, N'template_allexceptside.png', N'For clients/matters on each policy side, monitor activity for all users EXCEPT users on the SAME policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (5, N'Template - All Users', 2, N'template_allusers.png', N'For clients/matters on each policy side, monitor activity for all users', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (6, N'Linked - Same Policy Side', 3, N'linked_sameside.png', N'For clients/matters on each policy side, monitor activity for users on the SAME policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (7, N'Linked - Other Policy Sides', 3, N'linked_otherside.png', N'For clients/matters on each policy side, monitor activity for users on the OTHER policy sides', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (8, N'Linked - All Except Policy Side', 3, N'linked_allexceptside.png', N'For clients/matters on each policy side, monitor activity for all users EXCEPT users on the SAME policy side ', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (9, N'Linked - All Users', 3, N'linked_allusers.png', N'For clients/matters on each policy side, monitor activity for all users', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (10, N'Template - Contractor', 2, N'template_contractor.png', N'For users on the policy side, monitor activity for all clients and matters except those on the policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (11, N'Linked - Contractor', 3, N'linked_contractor.png', N'For users on the policy side, monitor activity for all clients and matters except those on the policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (12, N'Smart', 1, N'statistical_allusers.png', N'For clients/matters on each tracker side, monitor activity for all users using statistical analysis', 0) +SET IDENTITY_INSERT [dbo].[TrackerTypes] OFF +SET IDENTITY_INSERT [dbo].[WallAccessTypes] ON + +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (1, N'Confidential Client/Matter - Client Requested', N'Off', N'Off', 1, N'WallIcon-ClientRequested.png', N'Matter confidentiality in response to a client request. Only explicitly selected people and groups have access to matter information.', N' +1111 + + +1 +1 +', N'Off', N'Off', 1, N'Fixed Lookback And Ongoing') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (2, N'Confidential Client/Matter - Partner Requested', N'Off', N'Off', 1, N'WallIcon-PartnerRequested.png', N'Matter confidentiality in response to a partner request. Only explicitly selected people and groups have access to matter information.', N' +1111 + + +1 +1 +', N'Off', N'Off', 1, N'Fixed Lookback And Ongoing') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (3, N'Ethical Screen - Waiver-Driven', N'On', N'Off', 2, N'WallIcon-WaiverDriven.png', N'Ethical wall in which a waiver has been obtained from one or more clients. Selected people cannot access specified client or matter information.', N' +11111111 + + +2 +2 +', N'Off', N'Off', 2, N'Fixed Lookback And Ongoing') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (4, N'Ethical Screen - Lateral Hire', N'Off', N'Off', 2, N'WallIcon-LateralHire.png', N'Ethical wall in which a lateral is being barred from a list of conflicting clients or matters.', N' +111 + + +2 +2 +', N'Off', N'Off', 2, N'Fixed Lookback And Ongoing') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (5, N'Internal Legal Hold', N'On', N'Off', 4, N'WallIcon-LegalHold.png', N'Legal hold - Certain client or matter information needs to be preserved. Users subject to this hold will not be able to modify the affected data.', N' + + + + 1 + 1 + 1 + 1 + + + 1 + 1 + 1 + 1 + + + + + + + + +1 +1 +0 +', N'Off', N'Off', 4, N'No Default') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (6, N'Foundational Policy', N'Off', N'Off', 5, N'WallIcon-Foundational.png', N'Clients and matters affected by this foundational policy will be set to private with only the selected users being granted access. Exclusionary wall security affecting these clients and matters will still be applied and any inclusionary walls will take precedence over this foundational policy', N' + + + + 1 + 1 + 1 + 1 + + + 1 + 1 + 1 + 1 + + + + + + + +1 +1 +', N'Off', N'Off', 5, N'Fixed Lookback And Ongoing') +SET IDENTITY_INSERT [dbo].[WallAccessTypes] OFF +SET IDENTITY_INSERT [dbo].[WallRoles] ON + +INSERT [dbo].[WallRoles] ([WallRoleId], [WallRoleName], [WallRoleXML]) VALUES (1, N'Default Access', NULL) +SET IDENTITY_INSERT [dbo].[WallRoles] OFF +SET IDENTITY_INSERT [dbo].[Widget] ON + +INSERT [dbo].[Widget] ([Id], [Name], [Description], [Url], [OrderNumber], [Editable], [SupportRedirection]) VALUES (2, N'Chart', N'Walls By Type or Acknowledgments HighCharts chart.', N'Widgets/ChartWidget.ascx', 1, 0, 1) +INSERT [dbo].[Widget] ([Id], [Name], [Description], [Url], [OrderNumber], [Editable], [SupportRedirection]) VALUES (3, N'Recent Activity', N'Displays walls with recent activity that was committed by the user currently logged into the application.', N'Widgets/RecentActivityWidget.ascx', 2, 0, 1) +INSERT [dbo].[Widget] ([Id], [Name], [Description], [Url], [OrderNumber], [Editable], [SupportRedirection]) VALUES (4, N'Matter Access Check', N'Check user access control availability.', N'Widgets/MatterAccessCheckWidget.ascx', 3, 0, 1) +INSERT [dbo].[Widget] ([Id], [Name], [Description], [Url], [OrderNumber], [Editable], [SupportRedirection]) VALUES (5, N'Report', N'Widget to display reports.', N'Widgets/ReportViewerWidget.ascx', 4, 0, 1) +SET IDENTITY_INSERT [dbo].[Widget] OFF +SET IDENTITY_INSERT [dbo].[WidgetInstance] ON + +INSERT [dbo].[WidgetInstance] ([Id], [WidgetZoneId], [WidgetId], [OrderNumber], [Expanded], [Maximized], [Resized], [Width], [Height], [Title], [WidgetProperties]) VALUES (2, 1, 2, 1, 1, 1, 0, 450, 330, N'Policies By Type', N'WallsByType') +INSERT [dbo].[WidgetInstance] ([Id], [WidgetZoneId], [WidgetId], [OrderNumber], [Expanded], [Maximized], [Resized], [Width], [Height], [Title], [WidgetProperties]) VALUES (3, 1, 3, 2, 1, 1, 0, 450, 330, N'All Recent Activity', N'All') +SET IDENTITY_INSERT [dbo].[WidgetInstance] OFF +SET IDENTITY_INSERT [dbo].[WidgetZone] ON + +INSERT [dbo].[WidgetZone] ([Id], [WidgetZoneTypeId], [UserId], [OrderNumber], [Title]) VALUES (1, 1, 1, 0, N'Main dashboard') +SET IDENTITY_INSERT [dbo].[WidgetZone] OFF +SET IDENTITY_INSERT [dbo].[WidgetZoneType] ON + +INSERT [dbo].[WidgetZoneType] ([Id], [WidgetZoneType], [WidgetZoneTypeDescription]) VALUES (1, N'Dashboard', N'Widget Zones which are located on the home page.') +SET IDENTITY_INSERT [dbo].[WidgetZoneType] OFF +/****** Object: Index [IX_TrackerAlertDetails_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerAlertDetails_1] ON [dbo].[AlertDetails] +( + [AlertId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_CustomFields_FieldId] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_CustomFields_FieldId] ON [dbo].[AlertDetailsCustomFields] +( + [FieldId] ASC, + [RepositoryTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_CustomFields_FieldName] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_CustomFields_FieldName] ON [dbo].[AlertDetailsCustomFields] +( + [FieldName] ASC, + [RepositoryTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerAlerts_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerAlerts_1] ON [dbo].[Alerts] +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_AttorneyAcknowledgments_WallSideId_isAcknowledged_isArchived] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_AttorneyAcknowledgments_WallSideId_isAcknowledged_isArchived] ON [dbo].[AttorneyAcknowledgments] +( + [WallSideId] ASC, + [isAcknowledged] ASC, + [isArchived] ASC +) +INCLUDE ( [EntityId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Config_ConfigVariable] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_Config_ConfigVariable] ON [dbo].[Config] +( + [ConfigVariable] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_1] ON [dbo].[Entities] +( + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_2] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_2] ON [dbo].[Entities] +( + [EntityRemoteSystemId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_3] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_3] ON [dbo].[Entities] +( + [ParentRemoteSystemId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_4] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_4] ON [dbo].[Entities] +( + [IsEnabledForSearch] ASC, + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_5] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_5] ON [dbo].[Entities] +( + [MatterTeamEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_6] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_6] ON [dbo].[Entities] +( + [WindowsNetworkLogon] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_7] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_7] ON [dbo].[Entities] +( + [Modified] DESC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_EntityDisplayId] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_EntityDisplayId] ON [dbo].[Entities] +( + [EntityDisplayId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_EntityCustomFieldConfig_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_EntityCustomFieldConfig_1] ON [dbo].[EntityCustomFieldConfig] +( + [EntityTypeId] ASC, + [DisplayName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_EntityKeyMap_ParentEntityId_IsActive] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_EntityKeyMap_ParentEntityId_IsActive] ON [dbo].[EntityKeyMap] +( + [ParentEntityId] ASC, + [IsActive] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ErrorLog_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ErrorLog_1] ON [dbo].[ErrorLog] +( + [ServiceType] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ErrorLog_2] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ErrorLog_2] ON [dbo].[ErrorLog] +( + [LogLevel] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ErrorLog_3] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ErrorLog_3] ON [dbo].[ErrorLog] +( + [Created] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ExtensionQueryResults_RequestId] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ExtensionQueryResults_RequestId] ON [dbo].[ExtensionQueryResults] +( + [RequestId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ExtensionServiceJobs_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ExtensionServiceJobs_1] ON [dbo].[ExtensionServiceJobs] +( + [ExtensionServiceName] ASC, + [ExtensionType] ASC, + [LibraryName] ASC, + [FinalStatus] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [ExternalUsersAccessHistory_SearchFields] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [ExternalUsersAccessHistory_SearchFields] ON [dbo].[ExternalUsersAccessHistory] +( + [MatterEntityId] ASC, + [ExternalUserEntityId] ASC, + [ActivityType] ASC, + [ActivityDate] ASC +) +INCLUDE ( [AccessHistoryId], + [ActivityReason]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_InsidersReports_MatterEntityID] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_InsidersReports_MatterEntityID] ON [dbo].[InsidersReports] +( + [MatterEntityID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Log_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Log_1] ON [dbo].[Log] +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Log_2] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Log_2] ON [dbo].[Log] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Log_3] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Log_3] ON [dbo].[Log] +( + [LogMessageType] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamHistories] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamHistories] ON [dbo].[MatterTeamHistories] +( + [MatterEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamHistories_UserEntityId_IsActive_MatterEntityId] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamHistories_UserEntityId_IsActive_MatterEntityId] ON [dbo].[MatterTeamHistories] +( + [UserEntityId] ASC, + [IsActive] ASC, + [MatterEntityId] ASC +) +INCLUDE ( [MatterTeamHistoryId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamSubscriptionRequests_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamSubscriptionRequests_1] ON [dbo].[MatterTeamSubscriptionRequests] +( + [MatterTeamId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamSubscriptionRequests_2] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamSubscriptionRequests_2] ON [dbo].[MatterTeamSubscriptionRequests] +( + [UserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamSubscriptionRequests_3] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamSubscriptionRequests_3] ON [dbo].[MatterTeamSubscriptionRequests] +( + [AdminEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Notifications] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Notifications] ON [dbo].[Notifications] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ObjectReleaseExceptions_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_1] ON [dbo].[ObjectReleaseExceptions] +( + [ExtensionType] ASC, + [LibraryName] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ObjectReleaseExceptions_2] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_2] ON [dbo].[ObjectReleaseExceptions] +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ObjectReleaseExceptions_3] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_3] ON [dbo].[ObjectReleaseExceptions] +( + [ExpirationDate] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ObjectReleaseExceptions_4] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_4] ON [dbo].[ObjectReleaseExceptions] +( + [ObjectId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [PermanentInsidersAccessHistory_SearchFields] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [PermanentInsidersAccessHistory_SearchFields] ON [dbo].[PermanentInsidersAccessHistory] +( + [UserEntityId] ASC, + [ActivityType] ASC, + [ActivityDate] ASC +) +INCLUDE ( [AccessHistoryId], + [ActivityReason]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportFields_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportFields_1] ON [dbo].[ReportFields] +( + [ReportTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Reports] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Reports] ON [dbo].[Reports] +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportSchedules_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportSchedules_1] ON [dbo].[ReportSchedules] +( + [ReportID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportSchedules_3] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportSchedules_3] ON [dbo].[ReportSchedules] +( + [IsEnabled] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportSchedules_4] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportSchedules_4] ON [dbo].[ReportSchedules] +( + [NextTimeDue] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_SummaryDetails_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_SummaryDetails_1] ON [dbo].[SummaryDetails] +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerClientsAndMatters_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerClientsAndMatters_1] ON [dbo].[TrackerClientsAndMatters] +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerExecutionClientsAndMatters_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerExecutionClientsAndMatters_1] ON [dbo].[TrackerExecutionClientsAndMatters] +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerExecutions_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerExecutions_1] ON [dbo].[TrackerExecutions] +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Thresholds_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Thresholds_1] ON [dbo].[Trackers] +( + [Modified] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Thresholds_2] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Thresholds_2] ON [dbo].[Trackers] +( + [IsDeleted] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Thresholds_3] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Thresholds_3] ON [dbo].[Trackers] +( + [IsEnabled] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ThresholdWatchList_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_ThresholdWatchList_1] ON [dbo].[TrackerWatchList] +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WallCustomFieldConfig_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_WallCustomFieldConfig_1] ON [dbo].[WallCustomFieldConfig] +( + [DisplayName] ASC, + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WallRoles_Name] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_WallRoles_Name] ON [dbo].[WallRoles] +( + [WallRoleName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Walls_1] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Walls_1] ON [dbo].[Walls] +( + [CreatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Walls_2] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_Walls_2] ON [dbo].[Walls] +( + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [UIX_Walls_FoundationalGroupId] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [UIX_Walls_FoundationalGroupId] ON [dbo].[Walls] +( + [FoundationalGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WallSecurityStatus_Entity] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSecurityStatus_Entity] ON [dbo].[WallSecurityStatus] +( + [EntityId] ASC +) +INCLUDE ( [WallId], + [Status]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSecurityStatus_WallId] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSecurityStatus_WallId] ON [dbo].[WallSecurityStatus] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSecurityStatus_WallSecurityStatusId] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSecurityStatus_WallSecurityStatusId] ON [dbo].[WallSecurityStatus] +( + [WallSecurityStatusId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSideEntities_EntityIdsForWallId] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSideEntities_EntityIdsForWallId] ON [dbo].[WallSideEntities] +( + [WallId] ASC +) +INCLUDE ( [WallSideId], + [EntityId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSideEntities_WasAddedBySelfMaintaining] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSideEntities_WasAddedBySelfMaintaining] ON [dbo].[WallSideEntities] +( + [WasAddedBySelfMaintaining] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSides] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSides] ON [dbo].[WallSides] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Widget_Name] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_Widget_Name] ON [dbo].[Widget] +( + [Name] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WidgetZone] Script Date: 2/8/2018 10:53:16 AM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_WidgetZone] ON [dbo].[WidgetZone] +( + [Title] ASC, + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +ALTER TABLE [dbo].[AlertDetails] ADD CONSTRAINT [DF_AlertDetails_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_IsEnabled] DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_CreationDate] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_ModifiedTime] DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD DEFAULT ((0)) FOR [InsidersModuleAccess] +GO +ALTER TABLE [dbo].[Attachments] ADD CONSTRAINT [DF_Attachments_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] ADD DEFAULT ((0)) FOR [isAcknowledged] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] ADD DEFAULT ((0)) FOR [isArchived] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] ADD CONSTRAINT [DF_DynamicEntityGroupExceptions_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] ADD CONSTRAINT [DF_DynamicEntityGroupExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[Entities] ADD DEFAULT ((1)) FOR [IsEnabledForSearch] +GO +ALTER TABLE [dbo].[Entities] ADD DEFAULT ((1)) FOR [NotificationRoleId] +GO +ALTER TABLE [dbo].[EntitiesMatterTeamFields] ADD DEFAULT ((0)) FOR [IsRelationshipPaired] +GO +ALTER TABLE [dbo].[EntitiesUserFields] ADD DEFAULT ((0)) FOR [IsExceptedFromActiveDirectoryGroups] +GO +ALTER TABLE [dbo].[EntitiesUserFields] ADD DEFAULT ((0)) FOR [IsExceptedFromJoiningMatterTeam] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT ('Custom Field') FOR [Description] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsIncludedInNotifications] DEFAULT ((0)) FOR [IsIncludedInNotifications] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT ((1)) FOR [IsIncludedInEntityTooltip] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsMultiValued] DEFAULT ((0)) FOR [IsMultiValued] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsIncludedInExtendedValidation] DEFAULT ((0)) FOR [IsIncludedInExtendedValidation] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT ((1)) FOR [IsIncludedInGeneralInformation] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsConfidential] DEFAULT ((0)) FOR [IsConfidential] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT (NULL) FOR [DateTimeFormat] +GO +ALTER TABLE [dbo].[EntityKeyMap] ADD CONSTRAINT [DF_EntityKeyMap_IsActive] DEFAULT ((1)) FOR [IsActive] +GO +ALTER TABLE [dbo].[EntityKeyMap] ADD CONSTRAINT [DF_EntityKeyMap_IsMTHistoryConflict] DEFAULT ((0)) FOR [IsMTHistoryConflict] +GO +ALTER TABLE [dbo].[EntityRelationshipTypes] ADD CONSTRAINT [DF_EntityRelationshipTypes_IsDirectRelationshipValidated] DEFAULT ((0)) FOR [IsDirectRelationshipValidated] +GO +ALTER TABLE [dbo].[EntityRelationshipTypes] ADD CONSTRAINT [DF_EntityRelationshipTypes_IsSharedRelationshipValidated] DEFAULT ((0)) FOR [IsSharedRelationshipValidated] +GO +ALTER TABLE [dbo].[ErrorLog] ADD DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[ExtensionServiceLocks] ADD CONSTRAINT [DF_LockTime_GETUTCDATE] DEFAULT (getutcdate()) FOR [LockTime] +GO +ALTER TABLE [dbo].[FileShareADGroupStatuses] ADD DEFAULT (getutcdate()) FOR [LastAccessTime] +GO +ALTER TABLE [dbo].[GlobalExceptions] ADD CONSTRAINT [DF_GlobalExceptions_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[GlobalExceptions] ADD CONSTRAINT [DF_GlobalExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[GroupEntityLog] ADD CONSTRAINT [DF_GroupEntityLog] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[InsidersReportFields] ADD CONSTRAINT [DF_InsidersReportFields_IsHeaderField] DEFAULT ((0)) FOR [IsHeaderField] +GO +ALTER TABLE [dbo].[InsidersReportFields] ADD DEFAULT (NULL) FOR [DateTimeFormat] +GO +ALTER TABLE [dbo].[InsidersReportFields] ADD CONSTRAINT [DF_InsidersReportFields_IsPermanentInsiders] DEFAULT ((0)) FOR [IsPermanentInsiders] +GO +ALTER TABLE [dbo].[Log] ADD CONSTRAINT [DF_Log_LogMessageCreated] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[MatterAccessHistory] ADD CONSTRAINT [DF_MatterAccessHistory_WasAddedBySelfMaintaining] DEFAULT ((0)) FOR [WasAddedBySelfMaintaining] +GO +ALTER TABLE [dbo].[MatterTeamExceptions] ADD CONSTRAINT [DF_MatterTeamExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[MatterTeamHistories] ADD CONSTRAINT [DF_MatterTeamHistories_ActivityDate] DEFAULT (getdate()) FOR [ActivityDate] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsAdmin] DEFAULT ((0)) FOR [IsAdmin] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsDelegate] DEFAULT ((0)) FOR [IsDelegate] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_WallRoleId] DEFAULT ((1)) FOR [WallRoleId] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsExceptedFromInactiveStatus] DEFAULT ((0)) FOR [IsExceptedFromInactiveStatus] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsRestrictedToGlobalAdmins] DEFAULT ((0)) FOR [IsRestrictedToGlobalAdmins] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_CanRemoveUsers] DEFAULT ((0)) FOR [CanRemoveUsers] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD DEFAULT ((0)) FOR [CanSubscribeUsers] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_ForceExpiration] DEFAULT ((0)) FOR [ForceNotification] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_IncludeAcknowledgments] DEFAULT ((0)) FOR [IncludeAcknowledgments] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_NotificationType] DEFAULT ('Event-Driven') FOR [NotificationType] +GO +ALTER TABLE [dbo].[Notifications] ADD DEFAULT ('Wall') FOR [Scope] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_NotificationName] DEFAULT ('') FOR [NotificationName] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_TriggerEvents] DEFAULT ((0)) FOR [TriggerEvents] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_IsDigest] DEFAULT ((0)) FOR [IsDigest] +GO +ALTER TABLE [dbo].[ObjectTemplate] ADD DEFAULT ((0)) FOR [SeparatorType] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_IsQueryable] DEFAULT ((1)) FOR [IsQueryable] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_IsSearchable] DEFAULT ((1)) FOR [IsSearchable] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_IsDefault] DEFAULT ((0)) FOR [IsDefault] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_OrderId] DEFAULT ((0)) FOR [OrderId] +GO +ALTER TABLE [dbo].[Reports] ADD CONSTRAINT [DF_Reports_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[Reports] ADD CONSTRAINT [DF_Reports_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[ReportSchedules] ADD CONSTRAINT [DF_ReportSchedules_RecipientAppUsers] DEFAULT ((0)) FOR [RecipientAppUsers] +GO +ALTER TABLE [dbo].[ReportSchedules] ADD CONSTRAINT [DF_ReportSchedules_SkipIfNoData] DEFAULT ((0)) FOR [SkipIfNoData] +GO +ALTER TABLE [dbo].[ReportSchedules] ADD CONSTRAINT [DF_ReportSchedules_IsEnabled] DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((1)) FOR [TrackerTypeId] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD CONSTRAINT [DF_TrackerExecutions_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [OnlyPrivate] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [OnlyDidNotAuthor] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [DistinctDocuments] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [IsCompleted] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [TrackActivityCategories] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((1)) FOR [ThresholdType] +GO +ALTER TABLE [dbo].[Trackers] ADD CONSTRAINT [DF_Thresholds_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[Trackers] ADD CONSTRAINT [DF_Thresholds_Modified] DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((0)) FOR [OnlyPrivate] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((0)) FOR [OnlyDidNotAuthor] +GO +ALTER TABLE [dbo].[Trackers] ADD CONSTRAINT [DF_Trackers_DistinctDocuments] DEFAULT ((1)) FOR [DistinctDocuments] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((0)) FOR [TrackActivityCategories] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((1)) FOR [ThresholdType] +GO +ALTER TABLE [dbo].[TrackerSides] ADD CONSTRAINT [DF_TrackerSides_TrackerSideName] DEFAULT ('Watch List') FOR [TrackerSideName] +GO +ALTER TABLE [dbo].[TrackerSides] ADD CONSTRAINT [DF_TrackerSides_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[TrackerTypes] ADD DEFAULT ((1)) FOR [TrackerCategoryId] +GO +ALTER TABLE [dbo].[TrackerTypes] ADD DEFAULT ((1)) FOR [IsVisible] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_SelfMaintaining] DEFAULT ('Off') FOR [SelfMaintaining] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_RequireAckForAccess] DEFAULT ('Off') FOR [RequireAckForAccess] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_OrderId] DEFAULT ((0)) FOR [OrderId] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_AutoAddMatterTeams] DEFAULT ('Off') FOR [AutoAddMatterTeams] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_RelationshipPairing] DEFAULT ('Off') FOR [RelationshipPairing] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessType_DefaultSelfMaintainingIntervalType] DEFAULT ('Fixed Lookback And Ongoing') FOR [DefaultSelfMaintainingIntervalType] +GO +ALTER TABLE [dbo].[WallCustomFieldConfig] ADD DEFAULT ('Custom Field') FOR [Description] +GO +ALTER TABLE [dbo].[WallExceptions] ADD CONSTRAINT [DF_WallExceptions_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[WallExceptions] ADD CONSTRAINT [DF_WallExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_WallAccessTypeId] DEFAULT ((1)) FOR [WallAccessTypeId] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_Modified] DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_IsEnabled] DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[Walls] ADD DEFAULT ((0)) FOR [IsSelfMaintaining] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DEF_Walls_RequireAcknowledgement] DEFAULT ((0)) FOR [IsRequireAcknowledgement] +GO +ALTER TABLE [dbo].[Walls] ADD DEFAULT ((0)) FOR [IsRelationshipPaired] +GO +ALTER TABLE [dbo].[WallSideEntities] ADD CONSTRAINT [DF_WallSideEntities_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[WallSideEntities] ADD CONSTRAINT [DF_WallSideEntities_WasAddedBySelfMaintaining] DEFAULT ((0)) FOR [WasAddedBySelfMaintaining] +GO +ALTER TABLE [dbo].[WallSides] ADD CONSTRAINT [DF_WallSides_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[WallSides] ADD CONSTRAINT [DF_WallSides_WallSideName] DEFAULT ('Side') FOR [WallSideName] +GO +ALTER TABLE [dbo].[Widget] ADD CONSTRAINT [DF_Widget_Editable] DEFAULT ((0)) FOR [Editable] +GO +ALTER TABLE [dbo].[Widget] ADD CONSTRAINT [DF_Widget_SupportRedirection] DEFAULT ((1)) FOR [SupportRedirection] +GO +ALTER TABLE [dbo].[WidgetInstance] ADD CONSTRAINT [DF_WidgetZoneWidgets_Expanded] DEFAULT ((1)) FOR [Expanded] +GO +ALTER TABLE [dbo].[WidgetInstance] ADD CONSTRAINT [DF_WidgetZoneWidgets_Maximized] DEFAULT ((1)) FOR [Maximized] +GO +ALTER TABLE [dbo].[WidgetInstance] ADD CONSTRAINT [DF_WidgetZoneWidgets_Resized] DEFAULT ((0)) FOR [Resized] +GO +ALTER TABLE [dbo].[AccessHistory] WITH CHECK ADD CONSTRAINT [FK_AccessHistory_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[AccessHistory] CHECK CONSTRAINT [FK_AccessHistory_Entities] +GO +ALTER TABLE [dbo].[AccessHistory] WITH CHECK ADD CONSTRAINT [FK_AccessHistory_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[AccessHistory] CHECK CONSTRAINT [FK_AccessHistory_Walls] +GO +ALTER TABLE [dbo].[AccessHistory] WITH CHECK ADD CONSTRAINT [FK_AccessHistory_WallSides] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[AccessHistory] CHECK CONSTRAINT [FK_AccessHistory_WallSides] +GO +ALTER TABLE [dbo].[Activities] WITH CHECK ADD CONSTRAINT [FK_Activities_ActivityCategories] FOREIGN KEY([ActivityCategoryId]) +REFERENCES [dbo].[ActivityCategories] ([ActivityCategoryId]) +GO +ALTER TABLE [dbo].[Activities] CHECK CONSTRAINT [FK_Activities_ActivityCategories] +GO +ALTER TABLE [dbo].[Activities] WITH CHECK ADD CONSTRAINT [FK_Activities_RepositoryTypes] FOREIGN KEY([RepositoryTypeId]) +REFERENCES [dbo].[RepositoryTypes] ([RepositoryTypeId]) +GO +ALTER TABLE [dbo].[Activities] CHECK CONSTRAINT [FK_Activities_RepositoryTypes] +GO +ALTER TABLE [dbo].[AlertDetails] WITH CHECK ADD CONSTRAINT [FK_AlertDetails_Alerts] FOREIGN KEY([AlertId]) +REFERENCES [dbo].[Alerts] ([AlertId]) +GO +ALTER TABLE [dbo].[AlertDetails] CHECK CONSTRAINT [FK_AlertDetails_Alerts] +GO +ALTER TABLE [dbo].[AlertDetailsCustomFields] WITH CHECK ADD CONSTRAINT [FK_AlertDetailsCustomFields_RepositoryTypes] FOREIGN KEY([RepositoryTypeId]) +REFERENCES [dbo].[RepositoryTypes] ([RepositoryTypeId]) +GO +ALTER TABLE [dbo].[AlertDetailsCustomFields] CHECK CONSTRAINT [FK_AlertDetailsCustomFields_RepositoryTypes] +GO +ALTER TABLE [dbo].[Alerts] WITH NOCHECK ADD CONSTRAINT [FK_Alerts_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[Alerts] CHECK CONSTRAINT [FK_Alerts_Entities] +GO +ALTER TABLE [dbo].[Alerts] WITH NOCHECK ADD CONSTRAINT [FK_Alerts_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[Alerts] CHECK CONSTRAINT [FK_Alerts_TrackerExecutions] +GO +ALTER TABLE [dbo].[ApplicationUsers] WITH CHECK ADD CONSTRAINT [FK_ApplicationUsers_ApplicationRolesAT] FOREIGN KEY([ATRoleId]) +REFERENCES [dbo].[ApplicationRolesAT] ([RoleId]) +GO +ALTER TABLE [dbo].[ApplicationUsers] CHECK CONSTRAINT [FK_ApplicationUsers_ApplicationRolesAT] +GO +ALTER TABLE [dbo].[ApplicationUsers] WITH CHECK ADD CONSTRAINT [FK_ApplicationUsers_ApplicationRolesMTM] FOREIGN KEY([MTMRoleId]) +REFERENCES [dbo].[ApplicationRolesMTM] ([RoleId]) +GO +ALTER TABLE [dbo].[ApplicationUsers] CHECK CONSTRAINT [FK_ApplicationUsers_ApplicationRolesMTM] +GO +ALTER TABLE [dbo].[ApplicationUsers] WITH CHECK ADD CONSTRAINT [FK_ApplicationUsers_ApplicationRolesWB] FOREIGN KEY([WBRoleId]) +REFERENCES [dbo].[ApplicationRolesWB] ([RoleId]) +GO +ALTER TABLE [dbo].[ApplicationUsers] CHECK CONSTRAINT [FK_ApplicationUsers_ApplicationRolesWB] +GO +ALTER TABLE [dbo].[Attachments] WITH CHECK ADD CONSTRAINT [FK_Attachments_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Attachments] CHECK CONSTRAINT [FK_Attachments_ApplicationUsers] +GO +ALTER TABLE [dbo].[Attachments] WITH CHECK ADD CONSTRAINT [FK_Attachments_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[Attachments] CHECK CONSTRAINT [FK_Attachments_Walls] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] WITH CHECK ADD CONSTRAINT [FK_AttorneyAcknowledgments_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] CHECK CONSTRAINT [FK_AttorneyAcknowledgments_Entities] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] WITH CHECK ADD CONSTRAINT [FK_AttorneyAcknowledgments_WallSides] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] CHECK CONSTRAINT [FK_AttorneyAcknowledgments_WallSides] +GO +ALTER TABLE [dbo].[DefaultNotifications] WITH CHECK ADD CONSTRAINT [FK_DefaultNotifications_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[DefaultNotifications] CHECK CONSTRAINT [FK_DefaultNotifications_Notifications] +GO +ALTER TABLE [dbo].[DefaultNotifications] WITH CHECK ADD CONSTRAINT [FK_DefaultNotifications_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[DefaultNotifications] CHECK CONSTRAINT [FK_DefaultNotifications_WallAccessTypes] +GO +ALTER TABLE [dbo].[DefaultTrackers] WITH CHECK ADD CONSTRAINT [FK_DefaultTrackers_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[DefaultTrackers] CHECK CONSTRAINT [FK_DefaultTrackers_Trackers] +GO +ALTER TABLE [dbo].[DefaultTrackers] WITH CHECK ADD CONSTRAINT [FK_DefaultTrackers_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[DefaultTrackers] CHECK CONSTRAINT [FK_DefaultTrackers_WallAccessTypes] +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_DigestNotificationAttachments_Attachments] FOREIGN KEY([NotificationAttachmentId]) +REFERENCES [dbo].[Attachments] ([AttachmentId]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] CHECK CONSTRAINT [FK_DigestNotificationAttachments_Attachments] +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_DigestNotificationAttachments_DigestNotifications] FOREIGN KEY([DigestNotificationId]) +REFERENCES [dbo].[DigestNotifications] ([DigestNotificationId]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] CHECK CONSTRAINT [FK_DigestNotificationAttachments_DigestNotifications] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [FK_DigestNotifications_DigestNotificationContent] FOREIGN KEY([DigestNotificationContentId]) +REFERENCES [dbo].[DigestNotificationContent] ([DigestNotificationContentId]) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [FK_DigestNotifications_DigestNotificationContent] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [FK_DigestNotifications_NotificationHistory] FOREIGN KEY([NotificationHistoryId]) +REFERENCES [dbo].[NotificationHistory] ([NotificationHistoryId]) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [FK_DigestNotifications_NotificationHistory] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [FK_DigestNotifications_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [FK_DigestNotifications_Notifications] +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupDefinitions_ApplicationUsers] FOREIGN KEY([CreatedBy]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] CHECK CONSTRAINT [FK_DynamicEntityGroupDefinitions_ApplicationUsers] +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] WITH NOCHECK ADD CONSTRAINT [FK_DynamicEntityGroupDefinitions_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] CHECK CONSTRAINT [FK_DynamicEntityGroupDefinitions_Entities] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupExceptions_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] CHECK CONSTRAINT [FK_DynamicEntityGroupExceptions_ApplicationUsers] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupExceptions_DegEntities] FOREIGN KEY([DynamicGroupEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] CHECK CONSTRAINT [FK_DynamicEntityGroupExceptions_DegEntities] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupExceptions_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] CHECK CONSTRAINT [FK_DynamicEntityGroupExceptions_Entities] +GO +ALTER TABLE [dbo].[Entities] WITH CHECK ADD CONSTRAINT [FK_Entities_Entities] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[Entities] CHECK CONSTRAINT [FK_Entities_Entities] +GO +ALTER TABLE [dbo].[Entities] WITH CHECK ADD CONSTRAINT [FK_Entities_EntityTypes_1] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[Entities] CHECK CONSTRAINT [FK_Entities_EntityTypes_1] +GO +ALTER TABLE [dbo].[Entities] WITH CHECK ADD CONSTRAINT [FK_Entities_EntityTypes_2] FOREIGN KEY([ParentTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[Entities] CHECK CONSTRAINT [FK_Entities_EntityTypes_2] +GO +ALTER TABLE [dbo].[EntitiesMatterTeamFields] WITH CHECK ADD CONSTRAINT [FK_EntitiesMatterTeamFields_Entities] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntitiesMatterTeamFields] CHECK CONSTRAINT [FK_EntitiesMatterTeamFields_Entities] +GO +ALTER TABLE [dbo].[EntitiesUserFields] WITH CHECK ADD CONSTRAINT [FK_EntitiesUserFields_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntitiesUserFields] CHECK CONSTRAINT [FK_EntitiesUserFields_Entities] +GO +ALTER TABLE [dbo].[EntityCustomComboValues] WITH NOCHECK ADD CONSTRAINT [FK_EntityCustomComboValues_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[EntityCustomComboValues] CHECK CONSTRAINT [FK_EntityCustomComboValues_EntityTypes] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] WITH NOCHECK ADD CONSTRAINT [FK_EntityCustomFieldConfig_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] CHECK CONSTRAINT [FK_EntityCustomFieldConfig_EntityTypes] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_Entities_1] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_Entities_1] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_Entities_2] FOREIGN KEY([ParentEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_Entities_2] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_MatterTeamRole1] FOREIGN KEY([RoleId]) +REFERENCES [dbo].[MatterTeamRole] ([RoleId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_MatterTeamRole1] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_MatterTeamRole2] FOREIGN KEY([DemotionRoleId]) +REFERENCES [dbo].[MatterTeamRole] ([RoleId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_MatterTeamRole2] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [FK_EntityToEntityRelationships_Entities1] FOREIGN KEY([PrimaryEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [FK_EntityToEntityRelationships_Entities1] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [FK_EntityToEntityRelationships_Entities2] FOREIGN KEY([SubordinateEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [FK_EntityToEntityRelationships_Entities2] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [FK_EntityToEntityRelationships_EntityRelationshipTypes] FOREIGN KEY([EntityRelationshipTypeId]) +REFERENCES [dbo].[EntityRelationshipTypes] ([EntityRelationshipTypeId]) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [FK_EntityToEntityRelationships_EntityRelationshipTypes] +GO +ALTER TABLE [dbo].[ExternalUserFields] WITH CHECK ADD CONSTRAINT [FK_ExternalUserFields_ApplicationUsers] FOREIGN KEY([CreatedBy]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[ExternalUserFields] CHECK CONSTRAINT [FK_ExternalUserFields_ApplicationUsers] +GO +ALTER TABLE [dbo].[ExternalUserFields] WITH CHECK ADD CONSTRAINT [FK_ExternalUserFields_Entities] FOREIGN KEY([ExternalUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[ExternalUserFields] CHECK CONSTRAINT [FK_ExternalUserFields_Entities] +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] WITH CHECK ADD CONSTRAINT [FK_ExternalUsersAccessHistory_MatterEntities] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] CHECK CONSTRAINT [FK_ExternalUsersAccessHistory_MatterEntities] +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] WITH CHECK ADD CONSTRAINT [FK_ExternalUsersAccessHistory_UserEntities] FOREIGN KEY([ExternalUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] CHECK CONSTRAINT [FK_ExternalUsersAccessHistory_UserEntities] +GO +ALTER TABLE [dbo].[GlobalExceptions] WITH NOCHECK ADD CONSTRAINT [FK_GlobalExceptions_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[GlobalExceptions] CHECK CONSTRAINT [FK_GlobalExceptions_ApplicationUsers] +GO +ALTER TABLE [dbo].[GroupEntityLog] WITH CHECK ADD CONSTRAINT [FK_GroupEntityLog_Entities] FOREIGN KEY([GroupEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[GroupEntityLog] CHECK CONSTRAINT [FK_GroupEntityLog_Entities] +GO +ALTER TABLE [dbo].[HiddenMatterTeams] WITH CHECK ADD CONSTRAINT [FK_HiddenMatterTeams_Entities] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[HiddenMatterTeams] CHECK CONSTRAINT [FK_HiddenMatterTeams_Entities] +GO +ALTER TABLE [dbo].[InsidersReportFields] WITH CHECK ADD CONSTRAINT [FK_InsidersReportFields_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[InsidersReportFields] CHECK CONSTRAINT [FK_InsidersReportFields_EntityTypes] +GO +ALTER TABLE [dbo].[InsidersReportLogs] WITH CHECK ADD CONSTRAINT [FK_InsidersReportLogs_ApplicationUsers] FOREIGN KEY([ApplicationUserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[InsidersReportLogs] CHECK CONSTRAINT [FK_InsidersReportLogs_ApplicationUsers] +GO +ALTER TABLE [dbo].[InsidersReportLogs] WITH CHECK ADD CONSTRAINT [FK_InsidersReportLogs_Matters] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[InsidersReportLogs] CHECK CONSTRAINT [FK_InsidersReportLogs_Matters] +GO +ALTER TABLE [dbo].[InsidersReports] WITH CHECK ADD CONSTRAINT [FK_InsidersReports_Entities] FOREIGN KEY([MatterEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[InsidersReports] CHECK CONSTRAINT [FK_InsidersReports_Entities] +GO +ALTER TABLE [dbo].[Log] WITH CHECK ADD CONSTRAINT [FK_Log_ApplicationUsers] FOREIGN KEY([UserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Log] CHECK CONSTRAINT [FK_Log_ApplicationUsers] +GO +ALTER TABLE [dbo].[MatterAccessHistory] WITH CHECK ADD CONSTRAINT [FK_MatterAccessHistory_AccessHistory] FOREIGN KEY([AccessHistoryId]) +REFERENCES [dbo].[AccessHistory] ([AccessHistoryId]) +GO +ALTER TABLE [dbo].[MatterAccessHistory] CHECK CONSTRAINT [FK_MatterAccessHistory_AccessHistory] +GO +ALTER TABLE [dbo].[MatterAccessHistory] WITH CHECK ADD CONSTRAINT [FK_MatterAccessHistory_Entities] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterAccessHistory] CHECK CONSTRAINT [FK_MatterAccessHistory_Entities] +GO +ALTER TABLE [dbo].[MatterTeamExceptions] WITH CHECK ADD CONSTRAINT [FK_MatterTeamExceptions_Entities1] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamExceptions] CHECK CONSTRAINT [FK_MatterTeamExceptions_Entities1] +GO +ALTER TABLE [dbo].[MatterTeamExceptions] WITH CHECK ADD CONSTRAINT [FK_MatterTeamExceptions_Entities2] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamExceptions] CHECK CONSTRAINT [FK_MatterTeamExceptions_Entities2] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_MatterEntities] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_MatterEntities] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_MatterTeamHistoryActivityTypes] FOREIGN KEY([ActivityTypeId]) +REFERENCES [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_MatterTeamHistoryActivityTypes] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_MatterTeamRoles] FOREIGN KEY([RoleId]) +REFERENCES [dbo].[MatterTeamRole] ([RoleId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_MatterTeamRoles] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_UserEntities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_UserEntities] +GO +ALTER TABLE [dbo].[MatterTeamRole] WITH CHECK ADD CONSTRAINT [FK_MatterTeamRole_WallRoleId] FOREIGN KEY([WallRoleId]) +REFERENCES [dbo].[WallRoles] ([WallRoleId]) +GO +ALTER TABLE [dbo].[MatterTeamRole] CHECK CONSTRAINT [FK_MatterTeamRole_WallRoleId] +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] WITH CHECK ADD CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities1] FOREIGN KEY([MatterTeamId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] CHECK CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities1] +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] WITH CHECK ADD CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities2] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] CHECK CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities2] +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] WITH CHECK ADD CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities3] FOREIGN KEY([AdminEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] CHECK CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities3] +GO +ALTER TABLE [dbo].[NotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_NotificationAttachments_Attachments] FOREIGN KEY([AttachmentId]) +REFERENCES [dbo].[Attachments] ([AttachmentId]) +GO +ALTER TABLE [dbo].[NotificationAttachments] CHECK CONSTRAINT [FK_NotificationAttachments_Attachments] +GO +ALTER TABLE [dbo].[NotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_NotificationAttachments_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[NotificationAttachments] CHECK CONSTRAINT [FK_NotificationAttachments_Notifications] +GO +ALTER TABLE [dbo].[NotificationHistory] WITH CHECK ADD CONSTRAINT [FK_NotificationHistory_AttorneyAcknowledgments] FOREIGN KEY([AcknowledgmentId]) +REFERENCES [dbo].[AttorneyAcknowledgments] ([AcknowledgmentId]) +GO +ALTER TABLE [dbo].[NotificationHistory] CHECK CONSTRAINT [FK_NotificationHistory_AttorneyAcknowledgments] +GO +ALTER TABLE [dbo].[NotificationHistory] WITH CHECK ADD CONSTRAINT [FK_NotificationHistory_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[NotificationHistory] CHECK CONSTRAINT [FK_NotificationHistory_Entities] +GO +ALTER TABLE [dbo].[NotificationHistory] WITH CHECK ADD CONSTRAINT [FK_NotificationHistorys_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[NotificationHistory] CHECK CONSTRAINT [FK_NotificationHistorys_Notifications] +GO +ALTER TABLE [dbo].[NotificationRoles] WITH CHECK ADD CONSTRAINT [FK_NotificationRoles_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[NotificationRoles] CHECK CONSTRAINT [FK_NotificationRoles_WallAccessTypes] +GO +ALTER TABLE [dbo].[ObjectReleaseExceptions] WITH CHECK ADD CONSTRAINT [FK_ObjectReleaseExceptions_EntityId] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ObjectReleaseExceptions] CHECK CONSTRAINT [FK_ObjectReleaseExceptions_EntityId] +GO +ALTER TABLE [dbo].[ObjectTemplate] WITH CHECK ADD CONSTRAINT [FK_ObjectTemplate_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[ObjectTemplate] CHECK CONSTRAINT [FK_ObjectTemplate_ApplicationUsers] +GO +ALTER TABLE [dbo].[ObjectTemplate] WITH CHECK ADD CONSTRAINT [FK_ObjectTemplate_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[ObjectTemplate] CHECK CONSTRAINT [FK_ObjectTemplate_EntityTypes] +GO +ALTER TABLE [dbo].[PermanentInsidersAccessHistory] WITH CHECK ADD CONSTRAINT [FK_PermanentInsidersAccessHistory_UserEntities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[PermanentInsidersAccessHistory] CHECK CONSTRAINT [FK_PermanentInsidersAccessHistory_UserEntities] +GO +ALTER TABLE [dbo].[PolicyCategories] WITH CHECK ADD CONSTRAINT [FK_PolicyCategories_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[PolicyCategories] CHECK CONSTRAINT [FK_PolicyCategories_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_UserEntityId] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_UserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_AllowingWallId] FOREIGN KEY([AllowingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_AllowingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_UserEntityId] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_UserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_ConflictingWallId] FOREIGN KEY([ConflictingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_ConflictingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_AllowedUserEntityId] FOREIGN KEY([AllowedUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_AllowedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_DeniedUserEntityId] FOREIGN KEY([DeniedUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_DeniedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_AllowingWallId] FOREIGN KEY([AllowingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_AllowingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_AllowedUserEntityId] FOREIGN KEY([ConflictingUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_AllowedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_DeniedUserEntityId] FOREIGN KEY([DeniedUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_DeniedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_AllowingWallId] FOREIGN KEY([ConflictingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_AllowingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportFields] WITH CHECK ADD CONSTRAINT [FK_ReportFields_ReportTypes] FOREIGN KEY([ReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[ReportFields] CHECK CONSTRAINT [FK_ReportFields_ReportTypes] +GO +ALTER TABLE [dbo].[Reports] WITH CHECK ADD CONSTRAINT [FK_Reports_ApplicationUsers] FOREIGN KEY([UserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Reports] CHECK CONSTRAINT [FK_Reports_ApplicationUsers] +GO +ALTER TABLE [dbo].[Reports] WITH CHECK ADD CONSTRAINT [FK_Reports_ReportTypes] FOREIGN KEY([ReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[Reports] CHECK CONSTRAINT [FK_Reports_ReportTypes] +GO +ALTER TABLE [dbo].[ReportSchedules] WITH CHECK ADD CONSTRAINT [FK_ReportFields_Reports] FOREIGN KEY([ReportID]) +REFERENCES [dbo].[Reports] ([ReportId]) +GO +ALTER TABLE [dbo].[ReportSchedules] CHECK CONSTRAINT [FK_ReportFields_Reports] +GO +ALTER TABLE [dbo].[ReportsConflictingLatestUpdateDate] WITH CHECK ADD CONSTRAINT [FK_ReportsConflictingLatestUpdateDate_ReportTypes_ReportTypeId] FOREIGN KEY([ReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[ReportsConflictingLatestUpdateDate] CHECK CONSTRAINT [FK_ReportsConflictingLatestUpdateDate_ReportTypes_ReportTypeId] +GO +ALTER TABLE [dbo].[ReportTypes] WITH CHECK ADD CONSTRAINT [FK_ParentReportTypes_ReportTypes] FOREIGN KEY([ParentReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[ReportTypes] CHECK CONSTRAINT [FK_ParentReportTypes_ReportTypes] +GO +ALTER TABLE [dbo].[ReportTypes] WITH CHECK ADD CONSTRAINT [FK_ReportTypes_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[ReportTypes] CHECK CONSTRAINT [FK_ReportTypes_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[Repositories] WITH CHECK ADD CONSTRAINT [FK_Repositories_RepositoryTypes] FOREIGN KEY([RepositoryTypeId]) +REFERENCES [dbo].[RepositoryTypes] ([RepositoryTypeId]) +GO +ALTER TABLE [dbo].[Repositories] CHECK CONSTRAINT [FK_Repositories_RepositoryTypes] +GO +ALTER TABLE [dbo].[SCHEDULER_CRON_TRIGGERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_CRON_TRIGGERS_SCHEDULER_TRIGGERS] FOREIGN KEY([TRIGGER_NAME], [TRIGGER_GROUP]) +REFERENCES [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_CRON_TRIGGERS] CHECK CONSTRAINT [FK_SCHEDULER_CRON_TRIGGERS_SCHEDULER_TRIGGERS] +GO +ALTER TABLE [dbo].[SCHEDULER_JOB_LISTENERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_JOB_LISTENERS_SCHEDULER_JOB_DETAILS] FOREIGN KEY([JOB_NAME], [JOB_GROUP]) +REFERENCES [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_JOB_LISTENERS] CHECK CONSTRAINT [FK_SCHEDULER_JOB_LISTENERS_SCHEDULER_JOB_DETAILS] +GO +ALTER TABLE [dbo].[SCHEDULER_SIMPLE_TRIGGERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_SIMPLE_TRIGGERS_SCHEDULER_TRIGGERS] FOREIGN KEY([TRIGGER_NAME], [TRIGGER_GROUP]) +REFERENCES [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_SIMPLE_TRIGGERS] CHECK CONSTRAINT [FK_SCHEDULER_SIMPLE_TRIGGERS_SCHEDULER_TRIGGERS] +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGER_LISTENERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_TRIGGER_LISTENERS_SCHEDULER_TRIGGERS] FOREIGN KEY([TRIGGER_NAME], [TRIGGER_GROUP]) +REFERENCES [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGER_LISTENERS] CHECK CONSTRAINT [FK_SCHEDULER_TRIGGER_LISTENERS_SCHEDULER_TRIGGERS] +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_TRIGGERS_SCHEDULER_JOB_DETAILS] FOREIGN KEY([JOB_NAME], [JOB_GROUP]) +REFERENCES [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP]) +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGERS] CHECK CONSTRAINT [FK_SCHEDULER_TRIGGERS_SCHEDULER_JOB_DETAILS] +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] WITH CHECK ADD CONSTRAINT [FK_ScreeningLawyerKeyMap_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] CHECK CONSTRAINT [FK_ScreeningLawyerKeyMap_Entities] +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] WITH CHECK ADD CONSTRAINT [FK_ScreeningLawyerKeyMap_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] CHECK CONSTRAINT [FK_ScreeningLawyerKeyMap_Walls] +GO +ALTER TABLE [dbo].[SummaryDetails] WITH NOCHECK ADD CONSTRAINT [FK_SummaryDetails_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[SummaryDetails] CHECK CONSTRAINT [FK_SummaryDetails_Entities] +GO +ALTER TABLE [dbo].[SummaryDetails] WITH NOCHECK ADD CONSTRAINT [FK_SummaryDetails_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[SummaryDetails] CHECK CONSTRAINT [FK_SummaryDetails_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerActivities_Activities] FOREIGN KEY([ActivityId]) +REFERENCES [dbo].[Activities] ([ActivityId]) +GO +ALTER TABLE [dbo].[TrackerActivities] CHECK CONSTRAINT [FK_TrackerActivities_Activities] +GO +ALTER TABLE [dbo].[TrackerActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerActivities_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerActivities] CHECK CONSTRAINT [FK_TrackerActivities_Trackers] +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerClientsAndMatters_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] CHECK CONSTRAINT [FK_TrackerClientsAndMatters_Entities] +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerClientsAndMatters_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] CHECK CONSTRAINT [FK_TrackerClientsAndMatters_Trackers] +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerClientsAndMatters_TrackerSides] FOREIGN KEY([TrackerSideId]) +REFERENCES [dbo].[TrackerSides] ([TrackerSideId]) +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] CHECK CONSTRAINT [FK_TrackerClientsAndMatters_TrackerSides] +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionActivities_Activities] FOREIGN KEY([ActivityId]) +REFERENCES [dbo].[Activities] ([ActivityId]) +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] CHECK CONSTRAINT [FK_TrackerExecutionActivities_Activities] +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionActivities_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] CHECK CONSTRAINT [FK_TrackerExecutionActivities_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionClientsAndMatters_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] CHECK CONSTRAINT [FK_TrackerExecutionClientsAndMatters_Entities] +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionClientsAndMatters_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] CHECK CONSTRAINT [FK_TrackerExecutionClientsAndMatters_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionLibraries_Libraries] FOREIGN KEY([LibraryId]) +REFERENCES [dbo].[Repositories] ([RepositoryId]) +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] CHECK CONSTRAINT [FK_TrackerExecutionLibraries_Libraries] +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionLibraries_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] CHECK CONSTRAINT [FK_TrackerExecutionLibraries_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_Trackers] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_TrackerSides] FOREIGN KEY([TrackerSideId]) +REFERENCES [dbo].[TrackerSides] ([TrackerSideId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_TrackerSides] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_TrackerTypes] FOREIGN KEY([TrackerTypeId]) +REFERENCES [dbo].[TrackerTypes] ([TrackerTypeId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_TrackerTypes] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_Walls] FOREIGN KEY([LinkedPolicyId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_Walls] +GO +ALTER TABLE [dbo].[TrackerRepositories] WITH CHECK ADD CONSTRAINT [FK_ThresholdRepositories_Repositories] FOREIGN KEY([RepositoryId]) +REFERENCES [dbo].[Repositories] ([RepositoryId]) +GO +ALTER TABLE [dbo].[TrackerRepositories] CHECK CONSTRAINT [FK_ThresholdRepositories_Repositories] +GO +ALTER TABLE [dbo].[TrackerRepositories] WITH CHECK ADD CONSTRAINT [FK_TrackerRepositories_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerRepositories] CHECK CONSTRAINT [FK_TrackerRepositories_Trackers] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_ApplicationUsers] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_ApplicationUsers_Modifier] FOREIGN KEY([ModifierId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_ApplicationUsers_Modifier] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_TrackerTypes] FOREIGN KEY([TrackerTypeId]) +REFERENCES [dbo].[TrackerTypes] ([TrackerTypeId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_TrackerTypes] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_Walls] FOREIGN KEY([LinkedPolicyId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_Walls] +GO +ALTER TABLE [dbo].[TrackerSides] WITH CHECK ADD CONSTRAINT [FK_TrackerSides_Tracker] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerSides] CHECK CONSTRAINT [FK_TrackerSides_Tracker] +GO +ALTER TABLE [dbo].[TrackerSides] WITH CHECK ADD CONSTRAINT [FK_TrackerSides_WallSide] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[TrackerSides] CHECK CONSTRAINT [FK_TrackerSides_WallSide] +GO +ALTER TABLE [dbo].[TrackerTypes] WITH CHECK ADD CONSTRAINT [FK_TrackerTypes_TrackerCategories] FOREIGN KEY([TrackerCategoryId]) +REFERENCES [dbo].[TrackerCategories] ([TrackerCategoryId]) +GO +ALTER TABLE [dbo].[TrackerTypes] CHECK CONSTRAINT [FK_TrackerTypes_TrackerCategories] +GO +ALTER TABLE [dbo].[TrackerWatchList] WITH CHECK ADD CONSTRAINT [FK_ThresholdWatchList_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[TrackerWatchList] CHECK CONSTRAINT [FK_ThresholdWatchList_Entities] +GO +ALTER TABLE [dbo].[TrackerWatchList] WITH CHECK ADD CONSTRAINT [FK_TrackerWatchList_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerWatchList] CHECK CONSTRAINT [FK_TrackerWatchList_Trackers] +GO +ALTER TABLE [dbo].[TrackerWatchList] WITH CHECK ADD CONSTRAINT [FK_TrackerWatchList_TrackerSides] FOREIGN KEY([TrackerSideId]) +REFERENCES [dbo].[TrackerSides] ([TrackerSideId]) +GO +ALTER TABLE [dbo].[TrackerWatchList] CHECK CONSTRAINT [FK_TrackerWatchList_TrackerSides] +GO +ALTER TABLE [dbo].[UserActivityCounts] WITH CHECK ADD CONSTRAINT [FK_UserActivityCounts_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[UserActivityCounts] CHECK CONSTRAINT [FK_UserActivityCounts_Entities] +GO +ALTER TABLE [dbo].[UserActivityCounts] WITH CHECK ADD CONSTRAINT [FK_UserActivityCounts_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[UserActivityCounts] CHECK CONSTRAINT [FK_UserActivityCounts_TrackerExecutions] +GO +ALTER TABLE [dbo].[WallAccessTypes] WITH CHECK ADD CONSTRAINT [FK_WallAccessTypes_PolicyCategories] FOREIGN KEY([PolicyCategoryId]) +REFERENCES [dbo].[PolicyCategories] ([PolicyCategoryId]) +GO +ALTER TABLE [dbo].[WallAccessTypes] CHECK CONSTRAINT [FK_WallAccessTypes_PolicyCategories] +GO +ALTER TABLE [dbo].[WallCustomComboValues] WITH CHECK ADD CONSTRAINT [FK_WallCustomComboValues_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[WallCustomComboValues] CHECK CONSTRAINT [FK_WallCustomComboValues_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[WallCustomFieldConfig] WITH CHECK ADD CONSTRAINT [FK_WallCustomFieldConfig_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[WallCustomFieldConfig] CHECK CONSTRAINT [FK_WallCustomFieldConfig_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[WallExceptions] WITH NOCHECK ADD CONSTRAINT [FK_WallExceptions_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[WallExceptions] CHECK CONSTRAINT [FK_WallExceptions_ApplicationUsers] +GO +ALTER TABLE [dbo].[WallExceptions] WITH CHECK ADD CONSTRAINT [FK_WallExceptions_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[WallExceptions] CHECK CONSTRAINT [FK_WallExceptions_Entities] +GO +ALTER TABLE [dbo].[WallExceptions] WITH CHECK ADD CONSTRAINT [FK_WallExceptions_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[WallExceptions] CHECK CONSTRAINT [FK_WallExceptions_Walls] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [FK_Walls_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [FK_Walls_ApplicationUsers] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [FK_Walls_ApplicationUsers2] FOREIGN KEY([ModifierId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [FK_Walls_ApplicationUsers2] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [FK_Walls_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [FK_Walls_WallAccessTypes] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_Entities] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_WallRoleId] FOREIGN KEY([WallRoleId]) +REFERENCES [dbo].[WallRoles] ([WallRoleId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_WallRoleId] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_Walls] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_WallSides] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_WallSides] +GO +ALTER TABLE [dbo].[WallSides] WITH CHECK ADD CONSTRAINT [FK_WallSides_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[WallSides] CHECK CONSTRAINT [FK_WallSides_Walls] +GO +ALTER TABLE [dbo].[WidgetInstance] WITH CHECK ADD CONSTRAINT [FK_WidgetZoneWidgets_Widget] FOREIGN KEY([WidgetId]) +REFERENCES [dbo].[Widget] ([Id]) +GO +ALTER TABLE [dbo].[WidgetInstance] CHECK CONSTRAINT [FK_WidgetZoneWidgets_Widget] +GO +ALTER TABLE [dbo].[WidgetInstance] WITH CHECK ADD CONSTRAINT [FK_WidgetZoneWidgets_WidgetZone] FOREIGN KEY([WidgetZoneId]) +REFERENCES [dbo].[WidgetZone] ([Id]) +GO +ALTER TABLE [dbo].[WidgetInstance] CHECK CONSTRAINT [FK_WidgetZoneWidgets_WidgetZone] +GO +ALTER TABLE [dbo].[WidgetZone] WITH CHECK ADD CONSTRAINT [FK_WidgetZone_ApplicationUsers] FOREIGN KEY([UserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[WidgetZone] CHECK CONSTRAINT [FK_WidgetZone_ApplicationUsers] +GO +ALTER TABLE [dbo].[WidgetZone] WITH CHECK ADD CONSTRAINT [FK_WidgetZone_WidgetZoneType] FOREIGN KEY([WidgetZoneTypeId]) +REFERENCES [dbo].[WidgetZoneType] ([Id]) +GO +ALTER TABLE [dbo].[WidgetZone] CHECK CONSTRAINT [FK_WidgetZone_WidgetZoneType] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [CK_DigestNotifications] CHECK (([EmailAddress] IS NOT NULL OR [NotificationHistoryId] IS NOT NULL)) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [CK_DigestNotifications] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [CK_EntityToEntityRelationships] CHECK (([PrimaryEntityId]<>[SubordinateEntityId])) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [CK_EntityToEntityRelationships] +GO +ALTER TABLE [dbo].[MatterTeamRole] WITH NOCHECK ADD CONSTRAINT [CK_MatterTeamRole_CanRemoveUsers] CHECK (([CanRemoveUsers]=(0) OR [CanRemoveUsers]=(1) AND [IsAdmin]=(1))) +GO +ALTER TABLE [dbo].[MatterTeamRole] CHECK CONSTRAINT [CK_MatterTeamRole_CanRemoveUsers] +GO +ALTER TABLE [dbo].[MatterTeamRole] WITH NOCHECK ADD CONSTRAINT [CK_MatterTeamRole_IsDelegate] CHECK (([IsDelegate]=(0) OR [IsDelegate]=(1) AND [IsAdmin]=(1))) +GO +ALTER TABLE [dbo].[MatterTeamRole] CHECK CONSTRAINT [CK_MatterTeamRole_IsDelegate] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [CK_Walls_FoundationalGroupId] CHECK ((isnumeric([FoundationalGroupId])<>(1) OR CONVERT([int],[FoundationalGroupId])=[WallId])) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [CK_Walls_FoundationalGroupId] +GO +/****** Object: StoredProcedure [dbo].[usp_makeunicodecolumn] Script Date: 2/8/2018 10:53:16 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + +-- Register procedure +CREATE PROCEDURE [dbo].[usp_makeunicodecolumn] + @TABLE_NAME VARCHAR(50) = 0, -- name of table + @columnname VARCHAR(50) = 0, -- name of column + @indexname VARCHAR (50) = 0, -- name of index + @prevtype VARCHAR (50) = 'varchar', -- previous type name + @newtype VARCHAR (50) = 'nvarchar' -- new type name +AS +-- Check if this column doesn't need changes +IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=@TABLE_NAME AND COLUMN_NAME=@columnname AND DATA_TYPE = @prevtype) +BEGIN + DECLARE @IsNullable VARCHAR(10) + DECLARE @precision VARCHAR(10) + SET @IsNullable = '1' + + -- Get if this columns may NULL value, and length of column in chars + SELECT @IsNullable = IS_NULLABLE, @precision = CHARACTER_MAXIMUM_LENGTH FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=@TABLE_NAME AND COLUMN_NAME=@columnname AND DATA_TYPE = @prevtype + + DECLARE @tsql VARCHAR (200) + DECLARE @indexIsDroped BIT + SET @indexIsDroped = 0 + + -- DROP existing index + IF (LEN(@indexname) > 1) AND (EXISTS (SELECT INDEXPROPERTY(OBJECT_ID(@TABLE_NAME), @indexname, 'IndexID'))) + BEGIN + SET @tsql = 'DROP INDEX ' + @TABLE_NAME + '.' + @indexname + EXEC (@tsql) + SET @indexIsDroped = 1 + END + -- Change column with new datatype + SET @tsql = 'ALTER TABLE [' + @TABLE_NAME + '] ALTER COLUMN [' + @columnname + '] ' + @newtype + IF (@precision IS NOT NULL) + BEGIN + -- Truncate length of column + IF (@precision > 4000) + BEGIN + SET @precision = 4000 + DECLARE @tsql_truncate VARCHAR(255) + SET @tsql_truncate = 'UPDATE [' + @TABLE_NAME + '] SET ' + @columnname + ' = LEFT(' + @columnname + ', 4000) WHERE LEN(' + @columnname + ') > 4000' + EXEC (@tsql_truncate) + END + SET @tsql = @tsql + '(' + @precision + ')' + END + IF (@IsNullable = '0' OR @IsNullable = 'NO') + SET @tsql = @tsql + ' NOT NULL' + ELSE SET @tsql = @tsql + ' NULL' + EXEC (@tsql) + + -- Create index if it was deleted + IF (@indexIsDroped > 0) + BEGIN + SET @tsql = 'CREATE INDEX ' + @indexname + ' ON ' + @TABLE_NAME + '(' + @columnname + ') ' + EXEC (@tsql) + END +END +GO +USE [master] +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET READ_WRITE +GO diff --git a/modules/sqlserver_install/templates/script_central.sql.erb b/modules/sqlserver_install/templates/script_central.sql.erb new file mode 100644 index 0000000..fb826a9 --- /dev/null +++ b/modules/sqlserver_install/templates/script_central.sql.erb @@ -0,0 +1,166 @@ +USE [master] +GO +/****** Object: Database [<%=@sqlserverdbname%>] Script Date: 2/8/2018 10:52:22 AM ******/ +--CREATE DATABASE [<%=@sqlserverdbname%>] +-- CONTAINMENT = NONE +-- ON PRIMARY +--( NAME = N'CentralAdministration', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\CentralAdministration.mdf' , SIZE = 3264KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB ) +-- LOG ON +--( NAME = N'CentralAdministration_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\CentralAdministration_log.ldf' , SIZE = 816KB , MAXSIZE = 2048GB , FILEGROWTH = 10%) +--GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET COMPATIBILITY_LEVEL = 120 +GO +IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')) +begin +EXEC [<%=@sqlserverdbname%>].[dbo].[sp_fulltext_database] @action = 'enable' +end +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_NULL_DEFAULT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_NULLS OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_PADDING OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_WARNINGS OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ARITHABORT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_CLOSE OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_SHRINK OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_UPDATE_STATISTICS ON +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET CURSOR_CLOSE_ON_COMMIT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET CURSOR_DEFAULT GLOBAL +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET CONCAT_NULL_YIELDS_NULL OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET NUMERIC_ROUNDABORT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET QUOTED_IDENTIFIER OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET RECURSIVE_TRIGGERS OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ENABLE_BROKER +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_UPDATE_STATISTICS_ASYNC OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET DATE_CORRELATION_OPTIMIZATION OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET TRUSTWORTHY OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ALLOW_SNAPSHOT_ISOLATION OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET PARAMETERIZATION SIMPLE +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET READ_COMMITTED_SNAPSHOT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET HONOR_BROKER_PRIORITY OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET RECOVERY FULL +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET MULTI_USER +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET PAGE_VERIFY CHECKSUM +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET DB_CHAINING OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF ) +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET TARGET_RECOVERY_TIME = 0 SECONDS +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET DELAYED_DURABILITY = DISABLED +GO +EXEC sys.sp_db_vardecimal_storage_format N'<%=@sqlserverdbnamecentraladmin%>', N'ON' +GO +USE [<%=@sqlserverdbname%>] +GO +/****** Object: Schema [cac] Script Date: 2/8/2018 10:52:23 AM ******/ +CREATE SCHEMA [cac] +GO +/****** Object: Table [cac].[Applications] Script Date: 2/8/2018 10:52:23 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [cac].[Applications]( + [ApplicationId] [int] IDENTITY(1,1) NOT NULL, + [ApplicationName] [nvarchar](256) NOT NULL, + [ApplicationType] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [DatabaseName] [nvarchar](256) NOT NULL, + [ServerName] [nvarchar](256) NOT NULL, + [UserName] [nvarchar](256) NOT NULL, + [UserPassword] [nvarchar](256) NOT NULL, + [UseWindowsAuthentication] [bit] NOT NULL, + [ApplicationUrl] [nvarchar](1000) NOT NULL, + [ApiServiceUrl] [nvarchar](1000) NULL, +PRIMARY KEY CLUSTERED +( + [ApplicationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [cac].[ApplicationUsers] Script Date: 2/8/2018 10:52:23 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [cac].[ApplicationUsers]( + [UserId] [int] IDENTITY(1,1) NOT NULL, + [Login] [nvarchar](50) NOT NULL, + [Password] [nvarchar](50) NOT NULL, + [Email] [nvarchar](100) NULL, + [IsEnabled] [bit] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [LastLogin] [datetime] NULL, + [Name] [nvarchar](100) NULL, + [IsDeleted] [bit] NOT NULL, +PRIMARY KEY CLUSTERED +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [cac].[Version] Script Date: 2/8/2018 10:52:23 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [cac].[Version]( + [AppVersion] [varchar](50) NULL +) ON [PRIMARY] +GO +SET IDENTITY_INSERT [cac].[ApplicationUsers] ON + +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (1, N'admin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'', 1, CAST(N'2018-02-05T11:46:11.490' AS DateTime), CAST(N'2018-02-05T11:46:11.490' AS DateTime), NULL, N'Administrator', 0) +SET IDENTITY_INSERT [cac].[ApplicationUsers] OFF +INSERT [cac].[Version] ([AppVersion]) VALUES (N'6.2.2002.5') +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ApplicationNameUnique] Script Date: 2/8/2018 10:52:23 AM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_ApplicationNameUnique] ON [cac].[Applications] +( + [ApplicationName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +ALTER TABLE [cac].[Applications] ADD DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [cac].[Applications] ADD DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT ((0)) FOR [IsDeleted] +GO +USE [master] +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET READ_WRITE +GO diff --git a/modules/sqlserver_install/templates/script_central_data.sql.erb b/modules/sqlserver_install/templates/script_central_data.sql.erb new file mode 100644 index 0000000..dfb8d2c --- /dev/null +++ b/modules/sqlserver_install/templates/script_central_data.sql.erb @@ -0,0 +1,26 @@ +USE [<%=@sqlserverdbname%>] +GO +SET IDENTITY_INSERT [cac].[Applications] ON + +INSERT [cac].[Applications] +([ApplicationId], [ApplicationName], [ApplicationType], [Created], [Modified], [DatabaseName], [ServerName], [UserName], [UserPassword], [UseWindowsAuthentication], [ApplicationUrl], [ApiServiceUrl]) VALUES (1, N'Walls', 1, CAST(N'2017-05-03 17:24:56.880' AS DateTime), CAST(N'2017-05-03 17:24:56.880' AS DateTime), N'<%=@sqlserverdbname%>', N'<%=@sqlserver%>', N'freshfields\FCL-SA-WEB-V100-W', N'pAqhXKMfPlO0QfqVRsg8urCJqARCZGqF94YQXe97qBY=', 1, N'http://<%=@webappserver%>/<%=@wallswebsitename%>/', N'https://<%=@webappserver%>/<%=@apiwebsitename%>/InternalAPIService.svc') +SET IDENTITY_INSERT [cac].[Applications] OFF +SET IDENTITY_INSERT [cac].[ApplicationUsers] ON + +--INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (1, N'admin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'', 1, CAST(N'2016-03-15 10:33:25.980' AS DateTime), CAST(N'2016-03-15 10:33:25.980' AS DateTime), NULL, N'Administrator', 0) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (2, N'freshfields\a-apanchabakesan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'ashok.panchabakesan@freshfields.com', 1, CAST(N'2016-03-15 10:45:00.097' AS DateTime), CAST(N'2016-03-15 10:45:00.097' AS DateTime), CAST(N'2016-04-26 16:13:39.287' AS DateTime), N'Ashok Panchabakesan', 0) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (3, N'freshfields\apanchabakesan', N'CY9rzUYh03PK3k6DJie09g==', N'ashok.panchabakesan@freshfields.com', 1, CAST(N'2016-03-15 09:48:50.290' AS DateTime), CAST(N'2016-03-15 09:48:50.290' AS DateTime), CAST(N'2016-04-21 16:37:32.173' AS DateTime), N'Ashok Panchabakesan', 0) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (4, N'freshfields\jchastell', N'CY9rzUYh03PK3k6DJie09g==', N'john.chastell@freshfield.com', 1, CAST(N'2016-03-15 09:49:11.743' AS DateTime), CAST(N'2016-03-15 09:49:11.743' AS DateTime), NULL, N'John Chastell', 0) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (5, N'freshfields\rSTOLLENMAIER', N'CY9rzUYh03PK3k6DJie09g==', N'Robert.STOLLENMAIER@freshfields.com', 1, CAST(N'2016-03-17 15:34:06.367' AS DateTime), CAST(N'2016-03-17 15:34:18.193' AS DateTime), CAST(N'2017-06-30 16:03:21.370' AS DateTime), N'Rob STOLLENMAIER', 0) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (6, N'freshfields\jeakin', N'CY9rzUYh03PK3k6DJie09g==', N'john.eakin@freshfieds.com', 1, CAST(N'2016-03-30 10:57:37.130' AS DateTime), CAST(N'2016-04-06 14:01:32.757' AS DateTime), CAST(N'2017-01-13 11:45:37.690' AS DateTime), N'John Eakin', 0) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (7, N'freshfields\FCL-SA-MON-V800-W', N'CY9rzUYh03PK3k6DJie09g==', NULL, 1, CAST(N'2016-05-10 11:03:07.073' AS DateTime), CAST(N'2017-05-03 15:55:14.723' AS DateTime), CAST(N'2017-03-22 16:24:26.783' AS DateTime), N'Service Account', 1) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (8, N'FRESHFIELDS\randerson', N'###', N'reuben.anderson@freshfields.com', 1, CAST(N'2016-05-10 14:25:07.667' AS DateTime), CAST(N'2016-05-10 14:25:07.667' AS DateTime), CAST(N'2016-05-10 14:25:07.667' AS DateTime), N'ANDERSON, Reuben', 0) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (9, N'freshfields\FCL-SA-APP-V810-W', N'CY9rzUYh03PK3k6DJie09g==', NULL, 1, CAST(N'2016-05-10 16:31:55.927' AS DateTime), CAST(N'2017-05-03 15:55:07.647' AS DateTime), CAST(N'2016-09-14 13:41:03.303' AS DateTime), N'Service Account', 1) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (10, N'freshfields\nbegum', N'gdyb21LQTcIANtvYMT7QVQ==', N'nazmin.begum@freshfields.com', 1, CAST(N'2016-08-03 13:37:42.207' AS DateTime), CAST(N'2016-08-03 13:38:40.753' AS DateTime), NULL, N'Nazmin Begum', 0) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (11, N'FRESHFIELDS\FCL-SA-MON-V807-W', N'CY9rzUYh03PK3k6DJie09g==', NULL, 1, CAST(N'2016-12-16 12:01:10.137' AS DateTime), CAST(N'2017-05-03 15:55:21.067' AS DateTime), CAST(N'2017-03-22 16:06:48.590' AS DateTime), N'Service Account', 1) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (12, N'freshfields\trapley', N'gdyb21LQTcIANtvYMT7QVQ==', N'taf.rapley@freshfields.com', 1, CAST(N'2017-01-13 11:46:01.773' AS DateTime), CAST(N'2017-01-13 11:46:01.773' AS DateTime), CAST(N'2017-06-29 16:01:16.340' AS DateTime), N'Taf rapley', 0) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (13, N'FRESHFIELDS\FCL-SA-APP-V150-W', N'93!gPkemitm3XfiV', N'FCL-SA-APP-V150-W@freshfields.com', 1, CAST(N'2017-03-10 17:14:00.290' AS DateTime), CAST(N'2017-05-03 15:54:52.710' AS DateTime), CAST(N'2017-04-12 15:11:23.430' AS DateTime), N'Service Account', 0) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (14, N'freshfields\FCL-SA-WEB-V100-W', N'93!gPkemitm3XfiV', NULL, 1, CAST(N'2017-03-10 17:16:04.357' AS DateTime), CAST(N'2017-03-10 17:16:04.357' AS DateTime), CAST(N'2017-06-07 16:35:18.700' AS DateTime), N'Service Account', 0) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (15, N'freshfields\andavies', N'cZ3x2eI6Q4Uwg6yvwDtwtQ==', N'anthony.davies@freshfields.com', 1, CAST(N'2017-05-03 15:53:34.470' AS DateTime), CAST(N'2017-05-03 15:53:34.470' AS DateTime), CAST(N'2017-05-04 09:35:46.120' AS DateTime), N'Anthony Davies ', 0) +INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (16, N'freshfields\algallagher', N'CY9rzUYh03PK3k6DJie09g==', N'alangallagher@freshfields.com', 1, CAST(N'2017-05-03 15:55:52.047' AS DateTime), CAST(N'2017-05-03 15:55:52.050' AS DateTime), CAST(N'2017-06-29 15:11:49.567' AS DateTime), N'Alan Gallagher', 0) +SET IDENTITY_INSERT [cac].[ApplicationUsers] OFF diff --git a/modules/sqlserver_install/templates/script_walls.sql.erb b/modules/sqlserver_install/templates/script_walls.sql.erb new file mode 100644 index 0000000..e516c02 --- /dev/null +++ b/modules/sqlserver_install/templates/script_walls.sql.erb @@ -0,0 +1,5821 @@ +USE [master] +GO +/****** Object: Database [<%=@sqlserverdbname%>] Script Date: 2/6/2018 1:34:16 PM ******/ +--CREATE DATABASE [<%=@sqlserverdbname%>] +-- CONTAINMENT = NONE +-- ON PRIMARY +--( NAME = N'WALLSstgSit', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\<%=@sqlserverdbname%>.mdf' , SIZE = 6336KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB ) +-- LOG ON +--( NAME = N'WALLSstgSit_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\<%=@sqlserverdbname%>_log.ldf' , SIZE = 3520KB , MAXSIZE = 2048GB , FILEGROWTH = 10%) +--GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET COMPATIBILITY_LEVEL = 100 +GO +IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')) +begin +EXEC [<%=@sqlserverdbname%>].[dbo].[sp_fulltext_database] @action = 'enable' +end +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_NULL_DEFAULT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_NULLS OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_PADDING OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_WARNINGS OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ARITHABORT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_CLOSE OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_SHRINK OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_UPDATE_STATISTICS ON +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET CURSOR_CLOSE_ON_COMMIT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET CURSOR_DEFAULT GLOBAL +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET CONCAT_NULL_YIELDS_NULL OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET NUMERIC_ROUNDABORT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET QUOTED_IDENTIFIER OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET RECURSIVE_TRIGGERS OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ENABLE_BROKER +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_UPDATE_STATISTICS_ASYNC OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET DATE_CORRELATION_OPTIMIZATION OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET TRUSTWORTHY OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ALLOW_SNAPSHOT_ISOLATION OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET PARAMETERIZATION SIMPLE +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET READ_COMMITTED_SNAPSHOT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET HONOR_BROKER_PRIORITY OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET RECOVERY FULL +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET MULTI_USER +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET PAGE_VERIFY CHECKSUM +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET DB_CHAINING OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF ) +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET TARGET_RECOVERY_TIME = 0 SECONDS +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET DELAYED_DURABILITY = DISABLED +GO +EXEC sys.sp_db_vardecimal_storage_format N'<%=@sqlserverdbname%>', N'ON' +GO +USE [<%=@sqlserverdbname%>] +GO +/****** Object: FullTextCatalog [WallsFTSCatalog] Script Date: 2/6/2018 1:34:16 PM ******/ +CREATE FULLTEXT CATALOG [WallsFTSCatalog] WITH ACCENT_SENSITIVITY = ON +GO +/****** Object: UserDefinedFunction [dbo].[LogSearch] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + +CREATE FUNCTION [dbo].[LogSearch] + (@column NVARCHAR(4000), @searchText NVARCHAR(4000)) +RETURNS @tbl TABLE (ErrorLogId int NOT NULL) AS + BEGIN + IF (@column = 'LogException') + BEGIN + INSERT INTO @tbl SELECT [ErrorLogId] + FROM ErrorLog WHERE CONTAINS(ErrorLog.LogException, @searchText) + END + ELSE IF (@column = 'LogMessage') + BEGIN + INSERT INTO @tbl SELECT [ErrorLogId] + FROM ErrorLog WHERE CONTAINS(ErrorLog.LogMessage, @searchText) + END + ELSE + BEGIN + INSERT INTO @tbl SELECT [ErrorLogId] + FROM ErrorLog WHERE CONTAINS(ErrorLog.*, @searchText) + END + RETURN + END +GO +/****** Object: UserDefinedFunction [dbo].[SplitUdf] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + +-- ============================================= +-- Description: Splits the @sourceString by the delimiter (currently char(13) + char(10)) +-- Parameter: @sourceString - The input string to split +-- Parameter: @udfIsDate - Indicates, whether the @sourceString is of date type. This causes an additional check. +-- Returns: DataTable with values +-- ============================================= +CREATE FUNCTION [dbo].[SplitUdf] (@sourceString nvarchar(200), @udfIsDate bit) +RETURNS @tbl TABLE (Value nvarchar(200) NULL) AS +BEGIN + DECLARE @pos int, + @nextpos int, + @valuelen int, + @delimiterlen int, + @offset int, + @delimiter nchar(2), + @value nvarchar(50) + + SELECT @pos = 0, + @nextpos = 1, + @delimiter = char(13) + char(10), -- the current multi-valued UDF delimiter + @delimiterlen = 2 -- the length of the current delimiter + + SELECT @value = LTRIM(RTRIM(@sourceString)) + -- if the source string contains the delimiter, split the string + IF (@sourceString LIKE '%' + @delimiter + '%') + BEGIN + WHILE @nextpos > 0 + BEGIN + SELECT @offset = CASE WHEN @pos > 0 THEN @delimiterlen ELSE 1 END + SELECT @nextpos = CHARINDEX(@delimiter, @sourceString, @pos + 1) + SELECT @valuelen = CASE WHEN @nextpos > 0 THEN @nextpos ELSE LEN(@sourceString) + 1 END - @pos - @offset + SELECT @value = LTRIM(RTRIM(SUBSTRING(@sourceString, @pos + @offset, @valuelen))) + IF (LEN(@value) > 0) + BEGIN + -- if UDF is of date type, check, whether @value is date + IF (@udfIsDate > 0) + BEGIN + IF (ISDATE(@value) > 0) + BEGIN + INSERT INTO @tbl (Value) VALUES (@value) + END + END + ELSE + INSERT INTO @tbl (Value) VALUES (@value) + END + SELECT @pos = @nextpos + END + RETURN + END + -- if the source string does not contain the delimiter, just return it + ELSE IF (LEN(@value) > 0) + BEGIN + -- if UDF is of date type, check, whether @value is date + IF (@udfIsDate > 0) + BEGIN + IF (ISDATE(@value) > 0) + BEGIN + INSERT INTO @tbl (Value) VALUES (@value) + END + END + ELSE + INSERT INTO @tbl (Value) VALUES (@value) + END + RETURN +END +GO +/****** Object: Table [dbo].[AccessHistory] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AccessHistory]( + [AccessHistoryId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [WallSideId] [int] NOT NULL, + [UserEntityId] [int] NULL, + [ActivityType] [nvarchar](10) NOT NULL, + [IsPending] [bit] NOT NULL, + CONSTRAINT [PK_AccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Activities] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Activities]( + [ActivityId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryTypeId] [int] NOT NULL, + [ActivityName] [nvarchar](255) NOT NULL, + [ActivityRemoteLabel] [nvarchar](255) NOT NULL, + [ActivityCategoryId] [int] NOT NULL, + CONSTRAINT [PK_Activities] PRIMARY KEY CLUSTERED +( + [ActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ActivityCategories] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ActivityCategories]( + [ActivityCategoryId] [int] IDENTITY(1,1) NOT NULL, + [ActivityCategoryName] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_ActivityCategories] PRIMARY KEY CLUSTERED +( + [ActivityCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[AlertDetails] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AlertDetails]( + [AlertDetailId] [int] IDENTITY(1,1) NOT NULL, + [AlertId] [int] NOT NULL, + [ActivityRemoteLabel] [nvarchar](255) NULL, + [ActivityName] [nvarchar](255) NOT NULL, + [RepositoryRemoteLabel] [nvarchar](255) NOT NULL, + [RepositoryName] [nvarchar](255) NOT NULL, + [RemoteObjectId] [nvarchar](100) NULL, + [RemoteObjectName] [nvarchar](255) NULL, + [RemoteObjectType] [nvarchar](255) NULL, + [RemoteObjectOwner] [nvarchar](255) NULL, + [ClientName] [nvarchar](255) NULL, + [MatterName] [nvarchar](255) NULL, + [EventTime] [datetime] NOT NULL, + [Custom1] [nvarchar](255) NULL, + [Custom2] [nvarchar](255) NULL, + [Custom3] [nvarchar](255) NULL, + [Custom4] [nvarchar](255) NULL, + [Custom5] [nvarchar](255) NULL, + [Created] [datetime] NOT NULL, + [RemoteObjectVersion] [nvarchar](10) NULL, + [ClientId] [nvarchar](100) NULL, + [MatterId] [nvarchar](100) NULL, + CONSTRAINT [PK_TrackerAlertDetails] PRIMARY KEY CLUSTERED +( + [AlertDetailId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[AlertDetailsCustomFields] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AlertDetailsCustomFields]( + [FieldId] [nvarchar](255) NOT NULL, + [FieldName] [varchar](50) NOT NULL, + [IsEnabled] [bit] NOT NULL, + [AlertDetailsCustomFieldId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryTypeId] [int] NULL, + CONSTRAINT [PK_CustomFields] PRIMARY KEY CLUSTERED +( + [AlertDetailsCustomFieldId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Alerts] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Alerts]( + [AlertId] [int] IDENTITY(1,1) NOT NULL, + [TrackerExecutionId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [UserName] [nvarchar](255) NULL, + [ActivityCount] [int] NOT NULL, + [StatisticsValue] [decimal](10, 2) NULL, + CONSTRAINT [PK_TrackerAlerts] PRIMARY KEY CLUSTERED +( + [AlertId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationRolesAT] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationRolesAT]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleName] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_ApplicationRolesAT] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationRolesMTM] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationRolesMTM]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleName] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_ApplicationRolesMTM] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationRolesWB] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationRolesWB]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleName] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_Roles] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationUsers] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationUsers]( + [UserId] [int] IDENTITY(1,1) NOT NULL, + [WBRoleId] [int] NULL, + [UserName] [nvarchar](50) NOT NULL, + [Password] [nvarchar](50) NOT NULL, + [Name] [nvarchar](100) NULL, + [Email] [nvarchar](100) NULL, + [IsEnabled] [bit] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [LastLogin] [datetime] NULL, + [MTMRoleId] [int] NULL, + [ATRoleId] [int] NULL, + [InsidersModuleAccess] [bit] NOT NULL, + CONSTRAINT [PK_ApplicationUsers] PRIMARY KEY CLUSTERED +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Attachments] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Attachments]( + [AttachmentId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [FileName] [nvarchar](255) NOT NULL, + [FileSize] [int] NOT NULL, + [FileContentType] [nvarchar](75) NULL, + [FileContent] [image] NULL, + [CreatorId] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_Attachments] PRIMARY KEY CLUSTERED +( + [AttachmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[AttorneyAcknowledgments] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AttorneyAcknowledgments]( + [AcknowledgmentId] [int] IDENTITY(1,1) NOT NULL, + [WallSideId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [isAcknowledged] [bit] NOT NULL, + [DateOfAcceptance] [datetime] NULL, + [DateOfNotice] [datetime] NULL, + [isArchived] [bit] NOT NULL, + CONSTRAINT [PK_AttorneyAcknowledgments] PRIMARY KEY CLUSTERED +( + [AcknowledgmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[CommonTerms] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[CommonTerms]( + [OriginalValue] [nvarchar](50) NOT NULL, + [ReplacedValue] [nvarchar](50) NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Config] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Config]( + [ConfigId] [int] IDENTITY(1,1) NOT NULL, + [ConfigVariable] [nvarchar](255) NOT NULL, + [ConfigValue1] [nvarchar](max) NULL, + [ConfigValue2] [nvarchar](4000) NULL, + [Category] [nvarchar](64) NULL, + [ConfigType] [nvarchar](50) NULL, + [MetaData] [nvarchar](max) NULL, + [SubCategoryOf] [nvarchar](255) NULL, + CONSTRAINT [PK_Config] PRIMARY KEY CLUSTERED +( + [ConfigId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[DefaultNotifications] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DefaultNotifications]( + [NotificationId] [int] NOT NULL, + [WallAccessTypeId] [int] NOT NULL, + CONSTRAINT [PK_DefaultNotifications] PRIMARY KEY CLUSTERED +( + [NotificationId] ASC, + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DefaultTrackers] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DefaultTrackers]( + [TrackerId] [int] NOT NULL, + [WallAccessTypeId] [int] NOT NULL, + CONSTRAINT [PK_DefaultTrackers] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC, + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DigestNotificationAttachments] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DigestNotificationAttachments]( + [NotificationAttachmentId] [int] NOT NULL, + [DigestNotificationId] [bigint] NOT NULL, + CONSTRAINT [PK_DigestNotificationAttachments] PRIMARY KEY CLUSTERED +( + [NotificationAttachmentId] ASC, + [DigestNotificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DigestNotificationContent] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DigestNotificationContent]( + [DigestNotificationContentId] [int] IDENTITY(1,1) NOT NULL, + [NotificationText] [ntext] NULL, + [Subject] [nvarchar](1000) NULL, + [From] [nvarchar](1000) NULL, + CONSTRAINT [PK_DigestNotificationInfo] PRIMARY KEY CLUSTERED +( + [DigestNotificationContentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[DigestNotifications] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DigestNotifications]( + [DigestNotificationId] [bigint] IDENTITY(1,1) NOT NULL, + [NotificationId] [int] NOT NULL, + [EmailAddress] [nvarchar](50) NULL, + [CreatedDate] [datetime] NOT NULL, + [DigestNotificationContentId] [int] NOT NULL, + [NotificationHistoryId] [int] NULL, + CONSTRAINT [PK_DigestNotifications] PRIMARY KEY CLUSTERED +( + [DigestNotificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DynamicEntityGroupDefinitions] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DynamicEntityGroupDefinitions]( + [EntityId] [int] NOT NULL, + [DefinitionXml] [nvarchar](4000) NOT NULL, + [CreatedBy] [int] NULL, + CONSTRAINT [PK_DDynamicEntityGroupDefinitions] PRIMARY KEY CLUSTERED +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DynamicEntityGroupExceptions] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DynamicEntityGroupExceptions]( + [DynamicGroupEntityId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [CreatorId] [int] NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_DynamicEntityGroupExceptions] PRIMARY KEY CLUSTERED +( + [DynamicGroupEntityId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[Entities] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Entities]( + [EntityId] [int] IDENTITY(1,1) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [EntityRemoteSystemId] [nvarchar](100) NULL, + [EntityDescription] [nvarchar](255) NULL, + [ParentTypeId] [int] NULL, + [ParentRemoteSystemId] [nvarchar](100) NULL, + [ParentDescription] [nvarchar](255) NULL, + [EntityCustomData] [nvarchar](255) NULL, + [RecordsSystemId] [nvarchar](100) NULL, + [FinancialSystemId] [nvarchar](100) NULL, + [TimeEntrySystemId] [nvarchar](100) NULL, + [WindowsNetworkLogon] [nvarchar](100) NULL, + [CustomField1] [nvarchar](1000) NULL, + [CustomField2] [nvarchar](1000) NULL, + [CustomField3] [nvarchar](1000) NULL, + [CustomField4] [nvarchar](1000) NULL, + [CustomField5] [nvarchar](1000) NULL, + [CustomField6] [nvarchar](1000) NULL, + [CustomField7] [nvarchar](1000) NULL, + [CustomField8] [nvarchar](1000) NULL, + [CustomField9] [nvarchar](1000) NULL, + [CustomField10] [nvarchar](1000) NULL, + [IsEnabledForSearch] [bit] NOT NULL, + [Modified] [datetime] NULL, + [Created] [datetime] NULL, + [MatterOpenStatus] [bit] NULL, + [MatterConfidentialityStatus] [nvarchar](255) NULL, + [MatterTeamEntityId] [int] NULL, + [CustomField11] [nvarchar](1000) NULL, + [CustomField12] [nvarchar](1000) NULL, + [CustomField13] [nvarchar](1000) NULL, + [CustomField14] [nvarchar](1000) NULL, + [CustomField15] [nvarchar](1000) NULL, + [CustomField16] [nvarchar](1000) NULL, + [CustomField17] [nvarchar](1000) NULL, + [CustomField18] [nvarchar](1000) NULL, + [CustomField19] [nvarchar](1000) NULL, + [CustomField20] [nvarchar](1000) NULL, + [CustomField21] [nvarchar](1000) NULL, + [CustomField22] [nvarchar](1000) NULL, + [CustomField23] [nvarchar](1000) NULL, + [CustomField24] [nvarchar](1000) NULL, + [CustomField25] [nvarchar](1000) NULL, + [CustomField26] [nvarchar](1000) NULL, + [CustomField27] [nvarchar](1000) NULL, + [CustomField28] [nvarchar](1000) NULL, + [CustomField29] [nvarchar](1000) NULL, + [CustomField30] [nvarchar](1000) NULL, + [EntityDisplayId] [nvarchar](100) NULL, + [CrmSystemId] [nvarchar](100) NULL, + [TimeBuilderSystemId] [nvarchar](100) NULL, + [FileshareRemoteSystemId] [nvarchar](100) NULL, + [OpenSystemId] [nvarchar](100) NULL, + [NotificationRoleId] [int] NOT NULL, + CONSTRAINT [PK_Entities] PRIMARY KEY CLUSTERED +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntitiesMatterTeamFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntitiesMatterTeamFields]( + [MatterTeamEntityId] [int] NOT NULL, + [IsSelfMaintained] [bit] NOT NULL, + [SelfMaintainingMinHours] [int] NULL, + [SelfMaintainingPeriod] [int] NULL, + [SelfMaintainingPeriodUnit] [nvarchar](32) NULL, + [IsRelationshipPaired] [bit] NOT NULL, + [SelfMaintainingPeriodStart] [datetime] NULL, + [SelfMaintainingPeriodEnd] [datetime] NULL, + CONSTRAINT [PK_EntitiesMatterTeamFields] PRIMARY KEY CLUSTERED +( + [MatterTeamEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntitiesUserFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntitiesUserFields]( + [UserEntityId] [int] NOT NULL, + [IsExceptedFromActiveDirectoryGroups] [bit] NOT NULL, + [IsExceptedFromJoiningMatterTeam] [bit] NOT NULL, + CONSTRAINT [PK_EntitiesUserFields] PRIMARY KEY CLUSTERED +( + [UserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityCustomComboValues] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityCustomComboValues]( + [Field] [nvarchar](32) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [Value] [nvarchar](200) NOT NULL, + CONSTRAINT [PK_EntityCustomComboValues] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [EntityTypeId] ASC, + [Value] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityCustomFieldConfig] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityCustomFieldConfig]( + [Field] [nvarchar](32) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [DisplayName] [nvarchar](64) NOT NULL, + [Type] [nvarchar](32) NOT NULL, + [Description] [nvarchar](100) NOT NULL, + [IsIncludedInNotifications] [bit] NOT NULL, + [IsIncludedInEntityTooltip] [bit] NOT NULL, + [IsMultiValued] [bit] NOT NULL, + [IsIncludedInExtendedValidation] [bit] NOT NULL, + [IsIncludedInGeneralInformation] [bit] NOT NULL, + [IsConfidential] [bit] NOT NULL, + [DateTimeFormat] [nvarchar](50) NULL, + CONSTRAINT [PK_EntityCustomFieldConfig] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityKeyMap] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityKeyMap]( + [EntityId] [int] NOT NULL, + [ParentEntityId] [int] NOT NULL, + [RoleId] [int] NULL, + [Reason] [nvarchar](250) NULL, + [ExpirationDate] [datetime] NULL, + [IsActive] [bit] NOT NULL, + [DemotionRoleId] [int] NULL, + [IsMTHistoryConflict] [bit] NOT NULL, + CONSTRAINT [PK_EntityKeyMap] PRIMARY KEY CLUSTERED +( + [EntityId] ASC, + [ParentEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityRelationshipTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityRelationshipTypes]( + [EntityRelationshipTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](200) NOT NULL, + [PrimaryType] [nvarchar](100) NOT NULL, + [SubordinateType] [nvarchar](100) NOT NULL, + [IsDirectRelationshipValidated] [bit] NOT NULL, + [IsSharedRelationshipValidated] [bit] NOT NULL, + CONSTRAINT [PK_EntityRelationshipTypes] PRIMARY KEY CLUSTERED +( + [EntityRelationshipTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityToEntityRelationships] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityToEntityRelationships]( + [EntityRelationshipTypeId] [int] NOT NULL, + [PrimaryEntityId] [int] NOT NULL, + [SubordinateEntityId] [int] NOT NULL, + CONSTRAINT [PK_EntityToEntityRelationships] PRIMARY KEY CLUSTERED +( + [EntityRelationshipTypeId] ASC, + [PrimaryEntityId] ASC, + [SubordinateEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityTypes]( + [EntityTypeId] [int] IDENTITY(1,1) NOT NULL, + [EntityType] [nvarchar](100) NOT NULL, + [EntityTypePl] [nvarchar](100) NOT NULL, + [IsUserType] [bit] NOT NULL, + CONSTRAINT [PK_EntityTypes] PRIMARY KEY CLUSTERED +( + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ErrorLog] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ErrorLog]( + [ErrorLogId] [int] IDENTITY(1,1) NOT NULL, + [ServiceType] [nvarchar](64) NOT NULL, + [ServiceId] [nvarchar](255) NULL, + [LogLevel] [nvarchar](32) NOT NULL, + [LogMessage] [ntext] NOT NULL, + [LogException] [ntext] NULL, + [Created] [datetime] NOT NULL, + CONSTRAINT [PK_ErrorLog] PRIMARY KEY CLUSTERED +( + [ErrorLogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExtensionQueryResults] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExtensionQueryResults]( + [ExtensionQueryResultId] [int] IDENTITY(1,1) NOT NULL, + [RequestId] [nvarchar](128) NOT NULL, + [ExtensionServiceName] [nvarchar](255) NOT NULL, + [Status] [nvarchar](64) NOT NULL, + [ResultXml] [nvarchar](max) NULL, + [LastUpdateTime] [datetime] NOT NULL, + [Messages] [nvarchar](max) NULL, + CONSTRAINT [PK_ExtensionQueryResults] PRIMARY KEY CLUSTERED +( + [ExtensionQueryResultId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExtensionServiceJobs] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExtensionServiceJobs]( + [ExtensionServiceJobsId] [int] IDENTITY(1,1) NOT NULL, + [ExtensionServiceName] [nvarchar](255) NOT NULL, + [ExtensionType] [nvarchar](64) NULL, + [LibraryName] [nvarchar](128) NULL, + [JobType] [nvarchar](255) NOT NULL, + [JobXML] [ntext] NULL, + [JobState] [nvarchar](32) NOT NULL, + [FinalStatus] [nvarchar](32) NULL, + [Retries] [int] NOT NULL, + [QueueTime] [datetime] NOT NULL, + [StateLastChangedTime] [datetime] NOT NULL, + [StartTime] [datetime] NULL, + [EndTime] [datetime] NULL, + [Messages] [ntext] NULL, + [OperationId] [uniqueidentifier] NULL, + CONSTRAINT [PK_ExtensionServiceJobs] PRIMARY KEY CLUSTERED +( + [ExtensionServiceJobsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExtensionServiceLocks] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExtensionServiceLocks]( + [LockName] [nvarchar](256) NOT NULL, + [LockTime] [datetime] NOT NULL, + CONSTRAINT [PK_ExtensionServiceLocks] PRIMARY KEY CLUSTERED +( + [LockName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExternalUserFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExternalUserFields]( + [ExternalUserEntityId] [int] NOT NULL, + [CreatedBy] [int] NOT NULL, + CONSTRAINT [PK_ExternalUserFields] PRIMARY KEY CLUSTERED +( + [ExternalUserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExternalUsersAccessHistory] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExternalUsersAccessHistory]( + [AccessHistoryId] [int] IDENTITY(1,1) NOT NULL, + [ExternalUserEntityId] [int] NOT NULL, + [MatterEntityId] [int] NOT NULL, + [ActivityType] [nvarchar](10) NOT NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityReason] [nvarchar](1000) NULL, + CONSTRAINT [PK_ExternalUsersAccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[FileShareADGroupStatuses] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[FileShareADGroupStatuses]( + [GroupName] [nvarchar](256) NOT NULL, + [LastAccessTime] [datetime] NOT NULL, + [LastModificationTime] [datetime] NULL, + [SecurityId] [varchar](184) NULL, + CONSTRAINT [PK_FileShareADGroupStatuses] PRIMARY KEY CLUSTERED +( + [GroupName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[GlobalExceptions] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[GlobalExceptions]( + [EntityId] [int] NOT NULL, + [CreatorId] [int] NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_GlobalExceptions] PRIMARY KEY CLUSTERED +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[GroupEntityLog] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[GroupEntityLog]( + [LogId] [int] IDENTITY(1,1) NOT NULL, + [User] [nvarchar](255) NOT NULL, + [GroupEntityId] [int] NOT NULL, + [LogMessageType] [nvarchar](50) NOT NULL, + [LogMessage] [ntext] NULL, + [Created] [datetime] NOT NULL, + CONSTRAINT [PK_GroupEntityLog] PRIMARY KEY CLUSTERED +( + [LogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[HiddenMatterTeams] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[HiddenMatterTeams]( + [HiddenMatterTeamId] [int] IDENTITY(1,1) NOT NULL, + [UserId] [int] NOT NULL, + [UserIdType] [nvarchar](10) NOT NULL, + [MatterTeamEntityId] [int] NOT NULL, + CONSTRAINT [PK_HiddenMatterTeams] PRIMARY KEY CLUSTERED +( + [HiddenMatterTeamId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[InsidersReportFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[InsidersReportFields]( + [InsidersReportFieldsId] [int] NOT NULL, + [FieldName] [nvarchar](128) NULL, + [FieldType] [nvarchar](255) NOT NULL, + [Description] [nvarchar](255) NOT NULL, + [TableName] [nvarchar](255) NULL, + [ColumnName] [nvarchar](255) NULL, + [EntityTypeId] [int] NULL, + [OrderId] [int] NOT NULL, + [EmptyText] [nvarchar](100) NULL, + [IsHeaderField] [bit] NOT NULL, + [DateTimeFormat] [nvarchar](50) NULL, + [IsPermanentInsiders] [bit] NOT NULL, + CONSTRAINT [PK_InsidersReportFields] PRIMARY KEY CLUSTERED +( + [InsidersReportFieldsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[InsidersReportLogs] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[InsidersReportLogs]( + [InsidersReportLogId] [int] IDENTITY(1,1) NOT NULL, + [ApplicationUserId] [int] NOT NULL, + [MatterEntityId] [int] NULL, + [LogMessage] [nvarchar](max) NOT NULL, + [Created] [datetime] NOT NULL, + CONSTRAINT [PK_InsidersReportLogs] PRIMARY KEY CLUSTERED +( + [InsidersReportLogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[InsidersReports] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[InsidersReports]( + [InsidersReportsId] [int] IDENTITY(1,1) NOT NULL, + [MatterEntityID] [int] NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [LastRun] [datetime] NOT NULL, + [ReportXML] [ntext] NOT NULL, + CONSTRAINT [PK_InsidersReports] PRIMARY KEY CLUSTERED +( + [InsidersReportsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[Log] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Log]( + [LogId] [int] IDENTITY(1,1) NOT NULL, + [UserId] [int] NULL, + [WallId] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [LogMessage] [ntext] NULL, + [LogMessageType] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_Log] PRIMARY KEY CLUSTERED +( + [LogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterAccessHistory] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterAccessHistory]( + [AccessHistoryId] [int] NOT NULL, + [MatterEntityId] [int] NOT NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityReason] [nvarchar](1000) NULL, + [WasAddedBySelfMaintaining] [bit] NOT NULL, + CONSTRAINT [PK_MatterAccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC, + [MatterEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamExceptions] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamExceptions]( + [MatterTeamEntityId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [Creator] [nvarchar](255) NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_MatterTeamExceptions] PRIMARY KEY CLUSTERED +( + [MatterTeamEntityId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamHistories] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamHistories]( + [MatterTeamHistoryId] [int] IDENTITY(1,1) NOT NULL, + [MatterEntityId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [RoleId] [int] NOT NULL, + [Reason] [nvarchar](max) NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityTypeId] [tinyint] NOT NULL, + [Creator] [nvarchar](255) NOT NULL, + [IsActive] [bit] NOT NULL, + CONSTRAINT [PK_MatterTeamHistories] PRIMARY KEY CLUSTERED +( + [MatterTeamHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamHistoryActivityTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamHistoryActivityTypes]( + [ActivityTypeId] [tinyint] IDENTITY(0,1) NOT NULL, + [ActivityTypeName] [nvarchar](100) NOT NULL, + CONSTRAINT [PK_MatterTeamHistoryActivityTypes] PRIMARY KEY CLUSTERED +( + [ActivityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamRole] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamRole]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleDescription] [nvarchar](100) NOT NULL, + [IsAdmin] [bit] NOT NULL, + [IsDelegate] [bit] NOT NULL, + [WallRoleId] [int] NOT NULL, + [IsExceptedFromInactiveStatus] [bit] NOT NULL, + [IsRestrictedToGlobalAdmins] [bit] NOT NULL, + [CanRemoveUsers] [bit] NOT NULL, + [CanSubscribeUsers] [bit] NOT NULL, + CONSTRAINT [PK_MatterTeamRole] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamSubscriptionRequests] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamSubscriptionRequests]( + [RequestId] [int] IDENTITY(1,1) NOT NULL, + [MatterTeamId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [RequestDate] [datetime] NOT NULL, + [ResponseDate] [datetime] NULL, + [Status] [bit] NULL, + [Reason] [nvarchar](255) NULL, + [AdminEntityId] [int] NULL, + CONSTRAINT [PK_MatterTeamSubscriptionRequests] PRIMARY KEY CLUSTERED +( + [RequestId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[NotificationAttachments] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[NotificationAttachments]( + [NotificationId] [int] NOT NULL, + [AttachmentId] [int] NOT NULL, + CONSTRAINT [PK_NotificationAttachments] PRIMARY KEY CLUSTERED +( + [NotificationId] ASC, + [AttachmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[NotificationHistory] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[NotificationHistory]( + [NotificationHistoryId] [int] IDENTITY(1,1) NOT NULL, + [UserEntityId] [int] NOT NULL, + [NotificationId] [int] NOT NULL, + [NotificationSentDate] [datetime] NULL, + [AcknowledgmentId] [int] NULL, + CONSTRAINT [PK_NotificationHistory] PRIMARY KEY CLUSTERED +( + [NotificationHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[NotificationRoles] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[NotificationRoles]( + [NotificationRoleId] [int] NOT NULL, + [WallAccessTypeId] [int] NOT NULL, + [IsExceptedFromNotifications] [bit] NOT NULL, + [IsExceptedFromAcknowledgements] [bit] NOT NULL, + CONSTRAINT [PK_NotificationRoles] PRIMARY KEY CLUSTERED +( + [NotificationRoleId] ASC, + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Notifications] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Notifications]( + [NotificationId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [RecipientList] [nvarchar](1000) NOT NULL, + [NotificationText] [ntext] NULL, + [ForceNotification] [bit] NOT NULL, + [IsEnabled] [bit] NOT NULL, + [LastNotification] [datetime] NULL, + [IncludeAcknowledgments] [bit] NOT NULL, + [NotificationType] [nvarchar](50) NOT NULL, + [NextNotification] [datetime] NULL, + [TimeNumber] [int] NULL, + [TimeUnit] [nvarchar](30) NULL, + [Scope] [nvarchar](40) NOT NULL, + [CcList] [nvarchar](1000) NULL, + [BccList] [nvarchar](1000) NULL, + [From] [nvarchar](1000) NULL, + [NotificationName] [nvarchar](150) NOT NULL, + [Subject] [nvarchar](255) NULL, + [CreatorId] [int] NOT NULL, + [TriggerEvents] [smallint] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [IsDigest] [bit] NOT NULL, + CONSTRAINT [PK_Notifications] PRIMARY KEY CLUSTERED +( + [NotificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ObjectReleaseExceptions] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ObjectReleaseExceptions]( + [ObjectReleaseExceptionId] [int] IDENTITY(1,1) NOT NULL, + [ExtensionType] [nvarchar](64) NOT NULL, + [LibraryName] [nvarchar](255) NOT NULL, + [EntityId] [int] NOT NULL, + [ObjectType] [nvarchar](32) NOT NULL, + [ObjectId] [nvarchar](64) NOT NULL, + [ObjectName] [nvarchar](512) NULL, + [PrincipalName] [nvarchar](512) NOT NULL, + [PrincipalType] [nvarchar](32) NOT NULL, + [PrincipalId] [nvarchar](255) NOT NULL, + [Reason] [ntext] NULL, + [ExpirationDate] [datetime] NULL, + CONSTRAINT [PK_ObjectReleaseExceptions] PRIMARY KEY CLUSTERED +( + [ObjectReleaseExceptionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ObjectTemplate] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ObjectTemplate]( + [ObjectTemplateId] [int] IDENTITY(1,1) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [Name] [nvarchar](150) NOT NULL, + [TemplateText] [ntext] NULL, + [CreatorId] [int] NOT NULL, + [SeparatorType] [int] NOT NULL, + [Separator] [nvarchar](100) NULL, + CONSTRAINT [PK_ObjectTemplate] PRIMARY KEY CLUSTERED +( + [ObjectTemplateId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[PermanentInsidersAccessHistory] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PermanentInsidersAccessHistory]( + [AccessHistoryId] [int] IDENTITY(1,1) NOT NULL, + [UserEntityId] [int] NOT NULL, + [ActivityType] [nvarchar](10) NOT NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityReason] [nvarchar](1000) NULL, + CONSTRAINT [PK_PermanentInsidersAccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PolicyCategories] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PolicyCategories]( + [PolicyCategoryId] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](255) NOT NULL, + [DisplayName] [nvarchar](255) NOT NULL, + [PolicyCategoryGroupId] [int] NOT NULL, + CONSTRAINT [PK_PolicyCategories] PRIMARY KEY CLUSTERED +( + [PolicyCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PolicyCategoryGroups] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PolicyCategoryGroups]( + [PolicyCategoryGroupId] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_PolicyCategoryGroups] PRIMARY KEY CLUSTERED +( + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingAccessExplicit] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingAccessExplicit]( + [UserEntityId] [int] NOT NULL, + [ClientEntityId] [int] NOT NULL, + [MatterEntityId] [int] NULL, + [AllowingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingAccessImplicit] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingAccessImplicit]( + [UserEntityId] [int] NOT NULL, + [ClientEntityId] [int] NOT NULL, + [MatterEntityId] [int] NULL, + [ConflictingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingSharedResourcesExplicit] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingSharedResourcesExplicit]( + [AllowedUserEntityId] [int] NOT NULL, + [DeniedUserEntityId] [int] NOT NULL, + [ClientEntityID] [int] NOT NULL, + [MatterEntityID] [int] NULL, + [AllowingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL, + [Resource] [nvarchar](200) NOT NULL, + [ResourceType] [nvarchar](200) NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingSharedResourcesImplicit] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingSharedResourcesImplicit]( + [ConflictingUserEntityId] [int] NOT NULL, + [DeniedUserEntityId] [int] NOT NULL, + [ClientEntityID] [int] NOT NULL, + [MatterEntityID] [int] NULL, + [ConflictingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL, + [Resource] [nvarchar](200) NOT NULL, + [ResourceType] [nvarchar](200) NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportFields]( + [ReportFieldId] [int] NOT NULL, + [FieldName] [nvarchar](128) NULL, + [ReportTypeId] [int] NOT NULL, + [FieldType] [nvarchar](255) NOT NULL, + [Description] [nvarchar](255) NOT NULL, + [TableName] [nvarchar](255) NOT NULL, + [ColumnName] [nvarchar](255) NULL, + [IsQueryable] [bit] NOT NULL, + [IsSearchable] [bit] NOT NULL, + [IsDefault] [bit] NOT NULL, + [OrderId] [int] NOT NULL, + CONSTRAINT [PK_ReportFields] PRIMARY KEY CLUSTERED +( + [ReportFieldId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Reports] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Reports]( + [ReportId] [int] IDENTITY(1,1) NOT NULL, + [UserId] [int] NOT NULL, + [ReportTypeId] [int] NOT NULL, + [Name] [nvarchar](100) NOT NULL, + [Created] [datetime] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [ReportXml] [ntext] NULL, + CONSTRAINT [PK_Reports] PRIMARY KEY CLUSTERED +( + [ReportId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportSchedules] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportSchedules]( + [ReportScheduleID] [int] IDENTITY(1,1) NOT NULL, + [ReportID] [int] NOT NULL, + [Subject] [nvarchar](1000) NULL, + [RecipientList] [nvarchar](1000) NOT NULL, + [RecipientAppUsers] [bit] NOT NULL, + [FrequencyType] [nvarchar](50) NOT NULL, + [FrequencyInterval] [int] NULL, + [FrequencyUnit] [nvarchar](50) NULL, + [SkipIfNoData] [bit] NOT NULL, + [IsEnabled] [bit] NOT NULL, + [NextTimeDue] [datetime] NULL, + [LastTimeRun] [datetime] NULL, + CONSTRAINT [PK_ReportSchedules] PRIMARY KEY CLUSTERED +( + [ReportScheduleID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportsConflictingLatestUpdateDate] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportsConflictingLatestUpdateDate]( + [ReportTypeId] [int] NOT NULL, + [LatestUpdateDate] [datetime] NOT NULL, + [UpdateStartTime] [datetime] NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportTypes]( + [ReportTypeId] [int] IDENTITY(1,1) NOT NULL, + [ReportTypeName] [nvarchar](100) NOT NULL, + [ReportTypeDescription] [nvarchar](255) NULL, + [ParentReportTypeId] [int] NULL, + [PolicyCategoryGroupId] [int] NULL, + CONSTRAINT [PK_ReportTypes] PRIMARY KEY CLUSTERED +( + [ReportTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Repositories] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Repositories]( + [RepositoryId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryTypeId] [int] NOT NULL, + [RepositoryName] [nvarchar](255) NOT NULL, + [RepositoryRemoteLabel] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_Repositories] PRIMARY KEY CLUSTERED +( + [RepositoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RepositoryTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RepositoryTypes]( + [RepositoryTypeId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryType] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_RepositoryTypes] PRIMARY KEY CLUSTERED +( + [RepositoryTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ScheduledSecurityRepairStatus] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ScheduledSecurityRepairStatus]( + [ScheduledSecurityRepairStatusId] [int] IDENTITY(1,1) NOT NULL, + [ExtensionType] [nvarchar](64) NOT NULL, + [LibraryName] [nvarchar](255) NOT NULL, + [ObjectType] [nvarchar](32) NOT NULL, + [LastRepairTime] [datetime] NULL, + [Status] [nvarchar](32) NOT NULL, + [LastRepairId] [nvarchar](64) NULL, + CONSTRAINT [PK_ScheduledSecurityRepairStatus] PRIMARY KEY CLUSTERED +( + [ExtensionType] ASC, + [LibraryName] ASC, + [ObjectType] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_BLOB_TRIGGERS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_BLOB_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [BLOB_DATA] [image] NULL +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_CALENDARS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_CALENDARS]( + [CALENDAR_NAME] [varchar](200) NOT NULL, + [CALENDAR] [image] NOT NULL, + CONSTRAINT [PK_SCHEDULER_CALENDARS] PRIMARY KEY CLUSTERED +( + [CALENDAR_NAME] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_CRON_TRIGGERS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_CRON_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [CRON_EXPRESSION] [varchar](120) NOT NULL, + [TIME_ZONE_ID] [varchar](80) NULL, + CONSTRAINT [PK_SCHEDULER_CRON_TRIGGERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_FIRED_TRIGGERS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_FIRED_TRIGGERS]( + [ENTRY_ID] [varchar](95) NOT NULL, + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [IS_VOLATILE] [varchar](1) NOT NULL, + [INSTANCE_NAME] [varchar](200) NOT NULL, + [FIRED_TIME] [bigint] NOT NULL, + [PRIORITY] [int] NOT NULL, + [STATE] [varchar](16) NOT NULL, + [JOB_NAME] [varchar](200) NULL, + [JOB_GROUP] [varchar](200) NULL, + [IS_STATEFUL] [varchar](1) NULL, + [REQUESTS_RECOVERY] [varchar](1) NULL, + CONSTRAINT [PK_SCHEDULER_FIRED_TRIGGERS] PRIMARY KEY CLUSTERED +( + [ENTRY_ID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_JOB_DETAILS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_JOB_DETAILS]( + [JOB_NAME] [varchar](200) NOT NULL, + [JOB_GROUP] [varchar](200) NOT NULL, + [DESCRIPTION] [varchar](250) NULL, + [JOB_CLASS_NAME] [varchar](250) NOT NULL, + [IS_DURABLE] [varchar](1) NOT NULL, + [IS_VOLATILE] [varchar](1) NOT NULL, + [IS_STATEFUL] [varchar](1) NOT NULL, + [REQUESTS_RECOVERY] [varchar](1) NOT NULL, + [JOB_DATA] [image] NULL, + CONSTRAINT [PK_SCHEDULER_JOB_DETAILS] PRIMARY KEY CLUSTERED +( + [JOB_NAME] ASC, + [JOB_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_JOB_LISTENERS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_JOB_LISTENERS]( + [JOB_NAME] [varchar](200) NOT NULL, + [JOB_GROUP] [varchar](200) NOT NULL, + [JOB_LISTENER] [varchar](200) NOT NULL, + CONSTRAINT [PK_SCHEDULER_JOB_LISTENERS] PRIMARY KEY CLUSTERED +( + [JOB_NAME] ASC, + [JOB_GROUP] ASC, + [JOB_LISTENER] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_LOCKS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_LOCKS]( + [LOCK_NAME] [varchar](40) NOT NULL, + CONSTRAINT [PK_SCHEDULER_LOCKS] PRIMARY KEY CLUSTERED +( + [LOCK_NAME] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_PAUSED_TRIGGER_GRPS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_PAUSED_TRIGGER_GRPS]( + [TRIGGER_GROUP] [varchar](200) NOT NULL, + CONSTRAINT [PK_SCHEDULER_PAUSED_TRIGGER_GRPS] PRIMARY KEY CLUSTERED +( + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_SCHEDULER_STATE] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_SCHEDULER_STATE]( + [INSTANCE_NAME] [varchar](200) NOT NULL, + [LAST_CHECKIN_TIME] [bigint] NOT NULL, + [CHECKIN_INTERVAL] [bigint] NOT NULL, + CONSTRAINT [PK_SCHEDULER_SCHEDULER_STATE] PRIMARY KEY CLUSTERED +( + [INSTANCE_NAME] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_SIMPLE_TRIGGERS] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_SIMPLE_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [REPEAT_COUNT] [bigint] NOT NULL, + [REPEAT_INTERVAL] [bigint] NOT NULL, + [TIMES_TRIGGERED] [bigint] NOT NULL, + CONSTRAINT [PK_SCHEDULER_SIMPLE_TRIGGERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_TRIGGER_LISTENERS] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_TRIGGER_LISTENERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [TRIGGER_LISTENER] [varchar](200) NOT NULL, + CONSTRAINT [PK_SCHEDULER_TRIGGER_LISTENERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC, + [TRIGGER_LISTENER] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_TRIGGERS] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [JOB_NAME] [varchar](200) NOT NULL, + [JOB_GROUP] [varchar](200) NOT NULL, + [IS_VOLATILE] [varchar](1) NOT NULL, + [DESCRIPTION] [varchar](250) NULL, + [NEXT_FIRE_TIME] [bigint] NULL, + [PREV_FIRE_TIME] [bigint] NULL, + [PRIORITY] [int] NULL, + [TRIGGER_STATE] [varchar](16) NOT NULL, + [TRIGGER_TYPE] [varchar](8) NOT NULL, + [START_TIME] [bigint] NOT NULL, + [END_TIME] [bigint] NULL, + [CALENDAR_NAME] [varchar](200) NULL, + [MISFIRE_INSTR] [smallint] NULL, + [JOB_DATA] [image] NULL, + CONSTRAINT [PK_SCHEDULER_TRIGGERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ScreeningLawyerKeyMap] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ScreeningLawyerKeyMap]( + [EntityId] [int] NOT NULL, + [WallId] [int] NOT NULL, + CONSTRAINT [PK_ScreeningLawyerKeyMap] PRIMARY KEY CLUSTERED +( + [EntityId] ASC, + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SummaryDetails] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SummaryDetails]( + [SummaryDetailId] [int] IDENTITY(1,1) NOT NULL, + [TrackerExecutionId] [int] NOT NULL, + [UserName] [nvarchar](255) NULL, + [UserEntityId] [int] NOT NULL, + [Activity] [nvarchar](1000) NOT NULL, + [Repository] [nvarchar](255) NOT NULL, + [ActivityCount] [int] NOT NULL, + CONSTRAINT [PK_SummaryDetails] PRIMARY KEY CLUSTERED +( + [SummaryDetailId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerActivities] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerActivities]( + [TrackerId] [int] NOT NULL, + [ActivityId] [int] NOT NULL, + CONSTRAINT [PK_TrackerActivities] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC, + [ActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerCategories] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerCategories]( + [TrackerCategoryId] [int] NOT NULL, + [Name] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_TrackerCategories] PRIMARY KEY CLUSTERED +( + [TrackerCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerClientsAndMatters] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerClientsAndMatters]( + [TrackerId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [IsInclude] [bit] NOT NULL, + [TrackerSideId] [int] NOT NULL, + CONSTRAINT [PK_TrackerClientsAndMatters] PRIMARY KEY CLUSTERED +( + [TrackerSideId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutionActivities] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutionActivities]( + [TrackerExecutionId] [int] NOT NULL, + [ActivityId] [int] NOT NULL, + CONSTRAINT [PK_TrackerExecutionActivities] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC, + [ActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutionClientsAndMatters] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutionClientsAndMatters]( + [TrackerExecutionId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [IsInclude] [bit] NOT NULL, + CONSTRAINT [PK_TrackerExecutionClientsAndMatters] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutionLibraries] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutionLibraries]( + [TrackerExecutionId] [int] NOT NULL, + [LibraryId] [int] NOT NULL, + CONSTRAINT [PK_TrackerExecutionLibraries] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC, + [LibraryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutions] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutions]( + [TrackerExecutionId] [int] IDENTITY(1,1) NOT NULL, + [TrackerId] [int] NOT NULL, + [TrackerTypeId] [int] NOT NULL, + [LinkedPolicyId] [int] NULL, + [IntervalNumber] [int] NOT NULL, + [IntervalUnit] [nvarchar](50) NOT NULL, + [TrackerLimit] [decimal](8, 2) NULL, + [Created] [datetime] NOT NULL, + [IntervalEndDate] [datetime] NOT NULL, + [IntervalStartDate] [datetime] NOT NULL, + [OnlyPrivate] [bit] NOT NULL, + [OnlyDidNotAuthor] [bit] NOT NULL, + [DistinctDocuments] [bit] NOT NULL, + [GeneratesAlerts] [bit] NOT NULL, + [TrackerSideId] [int] NULL, + [IsCompleted] [bit] NOT NULL, + [TrackActivityCategories] [bit] NOT NULL, + [ThresholdType] [int] NOT NULL, + CONSTRAINT [PK_TrackerExecutions] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerRepositories] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerRepositories]( + [TrackerId] [int] NOT NULL, + [RepositoryId] [int] NOT NULL, + CONSTRAINT [PK_ThresholdRepositories] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC, + [RepositoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Trackers] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Trackers]( + [TrackerId] [int] IDENTITY(1,1) NOT NULL, + [TrackerName] [nvarchar](255) NOT NULL, + [TrackerDesc] [nvarchar](1000) NULL, + [IsEnabled] [bit] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [TrackerTypeId] [int] NOT NULL, + [Limit] [decimal](8, 2) NULL, + [StartDate] [datetime] NOT NULL, + [IntervalNumber] [int] NOT NULL, + [IntervalUnit] [nvarchar](50) NOT NULL, + [Notify] [nvarchar](1000) NULL, + [NotifyAppUsers] [bit] NOT NULL, + [DeliverIfNoAlert] [bit] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [NextTimeDue] [datetime] NOT NULL, + [CreatorId] [int] NOT NULL, + [OnlyPrivate] [bit] NOT NULL, + [OnlyDidNotAuthor] [bit] NOT NULL, + [DistinctDocuments] [bit] NOT NULL, + [ModifierId] [int] NOT NULL, + [GeneratesAlerts] [bit] NOT NULL, + [LinkedPolicyId] [int] NULL, + [TrackActivityCategories] [bit] NOT NULL, + [ThresholdType] [int] NOT NULL, + CONSTRAINT [PK_Thresholds] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerSides] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerSides]( + [TrackerSideId] [int] IDENTITY(1,1) NOT NULL, + [TrackerId] [int] NOT NULL, + [WallSideId] [int] NULL, + [TrackerSideName] [nvarchar](250) NOT NULL, + [IsDeleted] [bit] NOT NULL, + CONSTRAINT [PK_TrackerSides] PRIMARY KEY CLUSTERED +( + [TrackerSideId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerTypes] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerTypes]( + [TrackerTypeId] [int] IDENTITY(1,1) NOT NULL, + [TrackerType] [nvarchar](255) NOT NULL, + [TrackerCategoryId] [int] NOT NULL, + [Icon] [nvarchar](255) NULL, + [Description] [ntext] NULL, + [IsVisible] [bit] NOT NULL, + CONSTRAINT [PK_TrackerTypes] PRIMARY KEY CLUSTERED +( + [TrackerTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerWatchList] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerWatchList]( + [TrackerId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [IsInclude] [bit] NOT NULL, + [TrackerSideId] [int] NOT NULL, + CONSTRAINT [PK_TrackerWatchList] PRIMARY KEY CLUSTERED +( + [TrackerSideId] ASC, + [UserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[UserActivityCounts] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[UserActivityCounts]( + [UserActivityId] [int] IDENTITY(1,1) NOT NULL, + [TrackerExecutionId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [ActivityCount] [int] NOT NULL, + CONSTRAINT [PK_UserActivityCounts] PRIMARY KEY CLUSTERED +( + [UserActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallAccessTypes] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallAccessTypes]( + [WallAccessTypeId] [int] IDENTITY(1,1) NOT NULL, + [WallAccessType] [nvarchar](50) NOT NULL, + [SelfMaintaining] [nvarchar](64) NOT NULL, + [RequireAckForAccess] [nvarchar](64) NOT NULL, + [OrderId] [int] NOT NULL, + [Icon] [nvarchar](200) NULL, + [Description] [ntext] NULL, + [SideConfig] [nvarchar](4000) NULL, + [AutoAddMatterTeams] [nvarchar](64) NOT NULL, + [RelationshipPairing] [nvarchar](64) NOT NULL, + [PolicyCategoryId] [int] NOT NULL, + [DefaultSelfMaintainingIntervalType] [nvarchar](50) NULL, + CONSTRAINT [PK_WallAccessTypes] PRIMARY KEY CLUSTERED +( + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallCustomComboValues] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallCustomComboValues]( + [Field] [nvarchar](32) NOT NULL, + [Value] [nvarchar](200) NOT NULL, + [PolicyCategoryGroupId] [int] NOT NULL, + CONSTRAINT [PK_WallCustomComboValues] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [Value] ASC, + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallCustomFieldConfig] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallCustomFieldConfig]( + [Field] [nvarchar](32) NOT NULL, + [DisplayName] [nvarchar](64) NOT NULL, + [IsRequired] [bit] NOT NULL, + [Type] [nvarchar](32) NOT NULL, + [Description] [nvarchar](100) NOT NULL, + [PolicyCategoryGroupId] [int] NOT NULL, + CONSTRAINT [PK_WallCustomFieldConfig] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallExceptions] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallExceptions]( + [WallId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [CreatorId] [int] NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_WallExceptions] PRIMARY KEY CLUSTERED +( + [WallId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallRoles] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallRoles]( + [WallRoleId] [int] IDENTITY(1,1) NOT NULL, + [WallRoleName] [nvarchar](100) NOT NULL, + [WallRoleXML] [ntext] NULL, + CONSTRAINT [PK_WallRoles] PRIMARY KEY CLUSTERED +( + [WallRoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[Walls] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Walls]( + [WallId] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](250) NULL, + [WallAccessTypeId] [int] NOT NULL, + [Notes] [ntext] NULL, + [CreatorId] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [IsEnabled] [bit] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [ExpirationDate] [datetime] NULL, + [IsSelfMaintaining] [bit] NOT NULL, + [IsRequireAcknowledgement] [bit] NOT NULL, + [CustomField1] [nvarchar](200) NULL, + [CustomField2] [nvarchar](200) NULL, + [CustomField3] [nvarchar](200) NULL, + [CustomField4] [nvarchar](200) NULL, + [CustomField5] [nvarchar](200) NULL, + [CustomField6] [nvarchar](200) NULL, + [CustomField7] [nvarchar](200) NULL, + [CustomField8] [nvarchar](200) NULL, + [CustomField9] [nvarchar](200) NULL, + [CustomField10] [nvarchar](200) NULL, + [CustomDate1] [datetime] NULL, + [CustomDate2] [datetime] NULL, + [CustomDate3] [datetime] NULL, + [CustomDate4] [datetime] NULL, + [CustomDate5] [datetime] NULL, + [SelfMaintainingPeriod] [int] NULL, + [SelfMaintainingPeriodUnit] [nvarchar](32) NULL, + [SelfMaintainingMinHours] [int] NULL, + [EffectiveDate] [datetime] NULL, + [ModifierId] [int] NULL, + [SecurityStatus] [nvarchar](32) NULL, + [SelfMaintainingPeriodStart] [datetime] NULL, + [SelfMaintainingPeriodEnd] [datetime] NULL, + [SecurityStartDate] [datetime] NULL, + [SecurityEndDate] [datetime] NULL, + [IsRelationshipPaired] [bit] NOT NULL, + [ExtLegalHoldID] [varchar](20) NULL, + [FoundationalGroupId] [nvarchar](20) NULL, + CONSTRAINT [PK_Walls] PRIMARY KEY CLUSTERED +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallSecurityStatus] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallSecurityStatus]( + [WallSecurityStatusId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [ExtensionType] [nvarchar](64) NOT NULL, + [LibraryName] [nvarchar](255) NOT NULL, + [EntityId] [int] NOT NULL, + [Status] [nvarchar](32) NOT NULL, + [SecuredObjectCount] [int] NOT NULL, + [TotalObjectCount] [int] NOT NULL, + [Errors] [ntext] NULL, + [LastRecalculationDate] [datetime] NULL, + CONSTRAINT [PK_WallSecurityStatus] PRIMARY KEY CLUSTERED +( + [WallId] ASC, + [ExtensionType] ASC, + [LibraryName] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallSideEntities] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallSideEntities]( + [WallSideId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [WallId] [int] NOT NULL, + [DateAdded] [datetime] NULL, + [WasAddedBySelfMaintaining] [bit] NULL, + [WallRoleId] [int] NULL, + CONSTRAINT [PK_WallSideEntities] PRIMARY KEY CLUSTERED +( + [WallSideId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallSides] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallSides]( + [WallSideId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [WallSideName] [nvarchar](250) NOT NULL, + CONSTRAINT [PK_WallSides] PRIMARY KEY CLUSTERED +( + [WallSideId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Widget] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Widget]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](50) NOT NULL, + [Description] [nvarchar](250) NULL, + [Url] [nvarchar](2083) NOT NULL, + [OrderNumber] [int] NOT NULL, + [Editable] [bit] NOT NULL, + [SupportRedirection] [bit] NOT NULL, + CONSTRAINT [PK_Widget] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WidgetInstance] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WidgetInstance]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [WidgetZoneId] [int] NOT NULL, + [WidgetId] [int] NOT NULL, + [OrderNumber] [int] NOT NULL, + [Expanded] [bit] NOT NULL, + [Maximized] [bit] NOT NULL, + [Resized] [bit] NOT NULL, + [Width] [int] NOT NULL, + [Height] [int] NOT NULL, + [Title] [nvarchar](250) NOT NULL, + [WidgetProperties] [nvarchar](4000) NOT NULL, + CONSTRAINT [PK_WidgetZoneWidgets] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WidgetZone] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WidgetZone]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [WidgetZoneTypeId] [int] NOT NULL, + [UserId] [int] NOT NULL, + [OrderNumber] [int] NOT NULL, + [Title] [nvarchar](250) NULL, + CONSTRAINT [PK_WidgetZone] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WidgetZoneType] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WidgetZoneType]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [WidgetZoneType] [nvarchar](50) NOT NULL, + [WidgetZoneTypeDescription] [nvarchar](250) NULL, + CONSTRAINT [PK_WidgetZoneType] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: View [dbo].[ConfigRestricted] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + + CREATE VIEW [dbo].[ConfigRestricted] AS + SELECT ConfigId, ConfigVariable, ConfigValue1, ConfigValue2, Category, IsVisible + FROM [Config] + WHERE (ConfigVariable NOT LIKE '%Password') + AND (ConfigVariable NOT LIKE '%Username') + AND (ConfigVariable NOT LIKE '%Server') + AND (ConfigVariable NOT LIKE '%Name') + AND (ConfigVariable NOT LIKE '%Domain') + AND (ConfigVariable NOT LIKE '%Url') + AND (ConfigVariable NOT LIKE '%LibraryXML') + AND (ConfigVariable NOT LIKE '%LicenseKey') + AND (ConfigVariable NOT LIKE '%ConnectionString') + AND (ConfigVariable NOT LIKE '%PowerUserGroupsXML') + AND (ConfigVariable NOT LIKE '%RootDirectoryXML') + AND (ConfigVariable NOT LIKE '%ConnectionString') + AND (ConfigVariable NOT LIKE 'Mail::SMTPHost') + AND (ConfigVariable NOT LIKE '%PublicGroupDN') + AND (ConfigVariable NOT LIKE '%AdminUsersXML') + AND (ConfigVariable NOT LIKE 'MessageBus::ReceiverXML') + AND (ConfigVariable NOT LIKE '%ApiKey') + AND (ConfigVariable NOT LIKE '%AuthToken') +GO +SET IDENTITY_INSERT [dbo].[Activities] ON + +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (1, 1, N'Open', N'0', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (2, 1, N'View', N'1', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (3, 1, N'Check out', N'2', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (4, 1, N'Check in', N'3', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (5, 1, N'Changed Profile', N'4', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (6, 1, N'Close', N'5', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (7, 1, N'Create', N'6', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (8, 1, N'Create Version', N'7', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (9, 1, N'Change Security', N'8', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (10, 1, N'Copy', N'9', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (11, 1, N'Print', N'10', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (12, 1, N'Mail', N'11', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (13, 1, N'Delete', N'13', 2) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (14, 1, N'Release', N'17', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (15, 1, N'Export', N'18', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (16, 1, N'Modify', N'19', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (17, 1, N'Declared', N'22', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (18, 2, N'Create', N'1', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (19, 2, N'Print', N'3', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (20, 2, N'Delete Content', N'6', 2) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (21, 2, N'Check out', N'11', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (22, 2, N'Check in', N'12', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (23, 2, N'Copy', N'17', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (24, 2, N'Edit profile', N'20', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (25, 2, N'Change security', N'23', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (26, 2, N'Mail', N'30', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (27, 3, N'Accepted Invited', N'COLLABORATION_ACCEPT', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (28, 3, N'Changed user roles', N'COLLABORATION_ROLE_CHANGE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (29, 3, N'Copied', N'COPY', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (30, 3, N'Deleted', N'DELETE', 2) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (31, 3, N'Downloaded', N'DOWNLOAD', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (32, 3, N'Edited', N'EDIT', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (33, 3, N'Enabled shared links', N'SHARE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (34, 3, N'Extend collaborator expiration', N'UPDATE_COLLABORATION_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (35, 3, N'Extend shared link expiration', N'UPDATE_SHARE_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (36, 3, N'Invited', N'COLLABORATION_INVITE', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (37, 3, N'Locked', N'LOCK', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (38, 3, N'Moved', N'MOVE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (39, 3, N'Previewed', N'PREVIEW', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (40, 3, N'Removed collaborators', N'COLLABORATION_REMOVE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (41, 3, N'Renamed', N'RENAME', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (42, 3, N'Set collaborator expiration', N'COLLABORATOR_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (43, 3, N'Set file auto-delete', N'STORAGE_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (44, 3, N'Set shared link expiration', N'SHARE_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (45, 3, N'Synched folder', N'ITEM_SYNC', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (46, 3, N'Undeleted', N'UNDELETE', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (47, 3, N'Unlocked', N'UNLOCK', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (48, 3, N'Unshared links', N'UNSHARE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (49, 3, N'Uploaded', N'UPLOAD', 1) +SET IDENTITY_INSERT [dbo].[Activities] OFF +SET IDENTITY_INSERT [dbo].[ActivityCategories] ON + +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (1, N'Content Create') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (2, N'Content Delete') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (3, N'Content Edit') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (4, N'Content Export') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (5, N'Content View') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (6, N'Profile Edit') +SET IDENTITY_INSERT [dbo].[ActivityCategories] OFF +SET IDENTITY_INSERT [dbo].[ApplicationRolesAT] ON + +INSERT [dbo].[ApplicationRolesAT] ([RoleId], [RoleName]) VALUES (1, N'Administrator') +INSERT [dbo].[ApplicationRolesAT] ([RoleId], [RoleName]) VALUES (2, N'Editor') +INSERT [dbo].[ApplicationRolesAT] ([RoleId], [RoleName]) VALUES (3, N'Read-Only') +SET IDENTITY_INSERT [dbo].[ApplicationRolesAT] OFF +SET IDENTITY_INSERT [dbo].[ApplicationRolesMTM] ON + +INSERT [dbo].[ApplicationRolesMTM] ([RoleId], [RoleName]) VALUES (1, N'Global Administrator') +INSERT [dbo].[ApplicationRolesMTM] ([RoleId], [RoleName]) VALUES (2, N'Editor') +INSERT [dbo].[ApplicationRolesMTM] ([RoleId], [RoleName]) VALUES (3, N'Read-Only') +SET IDENTITY_INSERT [dbo].[ApplicationRolesMTM] OFF +SET IDENTITY_INSERT [dbo].[ApplicationRolesWB] ON + +INSERT [dbo].[ApplicationRolesWB] ([RoleId], [RoleName]) VALUES (1, N'Administrator') +INSERT [dbo].[ApplicationRolesWB] ([RoleId], [RoleName]) VALUES (2, N'Editor') +INSERT [dbo].[ApplicationRolesWB] ([RoleId], [RoleName]) VALUES (3, N'Read-Only') +SET IDENTITY_INSERT [dbo].[ApplicationRolesWB] OFF +SET IDENTITY_INSERT [dbo].[ApplicationUsers] ON + +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (-1, 3, N'IntApp', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'IntApp', N'', 1, 0, CAST(N'2018-02-03T17:06:51.560' AS DateTime), CAST(N'2018-02-03T17:06:51.560' AS DateTime), NULL, 3, 3, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (1, 1, N'admin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Administrator', N'', 1, 0, CAST(N'2018-02-03T17:06:10.770' AS DateTime), CAST(N'2018-02-06T11:27:39.750' AS DateTime), CAST(N'2018-02-06T11:27:39.707' AS DateTime), 1, 1, 1) +SET IDENTITY_INSERT [dbo].[ApplicationUsers] OFF +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Client', N'Client') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Clients', N'Clients') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Entities', N'Entities') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Entity', N'Entity') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Group', N'Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Groups', N'Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Matter', N'Matter') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Matters', N'Matters') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Screening Lawyer', N'Screening Lawyer') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Side', N'Side') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Sides', N'Sides') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'User', N'User') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Users', N'Users') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Wall', N'Wall') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Walls', N'Walls') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Screening Lawyers', N'Screening Lawyers') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Client Group', N'Dynamic Client Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Client Groups', N'Dynamic Client Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Matter Group', N'Dynamic Matter Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Matter Groups', N'Dynamic Matter Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic User Group', N'Dynamic User Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic User Groups', N'Dynamic User Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Group', N'Dynamic Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Groups', N'Dynamic Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Unrestricted', N'Unrestricted') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Confidential', N'Confidential') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Restricted', N'Restricted') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Matter Team', N'Matter Team') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Matter Teams', N'Matter Teams') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Foundational', N'Foundational') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'External User', N'External User') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'External Users', N'External Users') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Legal Hold', N'Legal Hold') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Legal Holds', N'Legal Holds') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Policy', N'Policy') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Policies', N'Policies') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Supervisor', N'Supervisor') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Supervisors', N'Supervisors') +SET IDENTITY_INSERT [dbo].[Config] ON + +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (7, N'AcknowledgmentConfigurableText', N'By clicking here, you confirm that you have read and acknowledged this ethical wall', NULL, N'Acknowledgments', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (9, N'DefaultSelfMaintainingPeriod', N'2', N'Y', N'Self-Maintaining', N'NumericAndDimension', N'{"values":["years", "months", "days", "hours"]}', N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (10, N'DefaultSelfMaintainingMinHours', N'5', NULL, N'Self-Maintaining', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (11, N'DefaultFromAddress', N'admin@firm.com', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (12, N'EnabledSelfMaintainingExclusionary', N'0', N'Self-Maintaining for Exclusionary Walls', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (13, N'EnabledAcknowledgments', N'0', N'Acknowledgments', N'Email', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (14, N'EnabledReports', N'1', N'Reports', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (15, N'EnabledNotifications', N'1', N'Notifications', N'Email', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (16, N'WallExceptionsAllowAllEntityTypes', N'0', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (17, N'DefaultNotificationText', N'You are receiving this notification because you have been added to the [Type] "[Name]". The details of this [Type] follow below.
[AllGeneralInformation]
[AllSideInformation]', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (18, N'RemoteIDField', N'EntityDisplayId', NULL, N'General', N'Select', N'{"values":["EntityRemoteSystemId", "CrmSystemId", "FinancialSystemId", "OpenSystemId", "RecordsSystemId", "TimeBuilderSystemId", "TimeEntrySystemId", "WindowsNetworkLogon", "EntityDisplayId"]}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (23, N'ExtensionServiceUsername', N'administrator', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (24, N'ExtensionServicePassword', N'', NULL, N'Extension Service', N'Password', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (25, N'SystemLogLevel', N'INFO', NULL, N'Logging', N'Select', N'{"values":["ERROR","WARNING", "INFO", "DEBUG"]}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (27, N'ExtensionServiceSecureClientMatterProgressFrequency', N'300', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (28, N'DM5::Username', N'', NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (29, N'DM5::Password', N'', NULL, N'DM5', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (31, N'Interwoven::Username', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (32, N'HostedWorksite::Password', N'', NULL, N'HostedWorksite', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (33, N'Interwoven::ForceUnlockDocuments', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (35, N'Interwoven::MaxRowsForSearch', N'9999', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (36, N'ClientMatterSeparatorChar', N'-', NULL, N'General', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (37, N'ExtensionServiceTimeout', N'180', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (38, N'IRM::Username', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (39, N'IRM::Password', N'', NULL, N'IRM', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (40, N'IRM::ClusterName', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (41, N'IRM::Domain', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (42, N'IRM::DefaultSecurityPolicy', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (43, N'IRM::MatterIDsUnique', N'0', NULL, N'IRM', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (44, N'LegalKEY::WebServiceUsername', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (45, N'LegalKEY::WebServicePassword', N'', NULL, N'LegalKEY', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (46, N'LegalKEY::WebServiceUrl', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (47, N'LegalKEY::LicenseKey', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (48, N'LegalKEY::LKUsername', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (49, N'LegalKEY::LKPassword', N'', NULL, N'LegalKEY', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (54, N'APIServiceUsername', N'administrator', NULL, N'API Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (55, N'APIServicePassword', N'', NULL, N'API Service', N'Password', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (56, N'InsidersHeaderLogo', N'images/Intapp_logo_RGB_small.png', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (57, N'InsidersHeaderText', N'Insiders List Generated in Compliance with the Market Abuse Regulation', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (58, N'InsidersHeaderFieldsXML', N'', NULL, N'Insiders', N'XML', N'{"schema":"InsidersHeaderFieldsXML.xsd"}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (59, N'InsidersDefaultAddReason', N'User added to wall for default reason', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (60, N'InsidersDefaultRemoveReason', N'User removed from wall for default reason', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (61, N'EnabledInsiders', N'0', N'Insiders', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (62, N'TimeKM::Username', N'', NULL, N'TimeKM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (63, N'TimeKM::Password', N'', NULL, N'TimeKM', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (64, N'TimeKM::Domain', N'', NULL, N'TimeKM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (65, N'TimeKM::WebServiceUrl', N'', NULL, N'TimeKM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (66, N'CMS::ConnectionString', N'', NULL, N'CMS', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (67, N'Interwoven::MaxRequestsPerSession', N'1000', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (68, N'LegalKEY::ApiType', N'', NULL, N'LegalKEY', N'Select', N'{"values":["", "OpenTextAPI", "SecureAccessAPI"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (69, N'LegalKEY::UseWallRank', N'1', NULL, N'LegalKEY', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (70, N'InternalAPIServiceUrl', N'', NULL, N'API Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (71, N'Mail::SMTPHost', N'', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (72, N'Mail::SMTPUsername', N'', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (73, N'Mail::SMTPPassword', N'', NULL, N'Notifications', N'Password', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (74, N'Mail::IsUseSSL', N'0', NULL, N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (75, N'Mail::MaxAttachmentSize', N'10485760', NULL, N'Notifications', N'Numeric', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (76, N'ConflictResolutionModel', N'Standard', NULL, N'General', N'Select', N'{"values":["Classic","Standard"]}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (77, N'SelfMaintainingCriteriaEnabledInclusionary', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (78, N'SelfMaintainingCriteriaEnabledExclusionary', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (79, N'EnabledSelfMaintainingInclusionary', N'0', N'Self-Maintaining for Inclusionary Walls', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (80, N'ShowAcknowledgmentExceptionColumn', N'0', N'Excepted from Acknowledgment', N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (81, N'Interwoven::LibraryXML', N'', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (82, N'DM5::LibraryXML', N'', NULL, N'DM5', N'XML', N'{"schema":"DM5LibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (83, N'SelfMaintainingIncludeTypist', N'0', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (84, N'WebView::PowerUserModel', N'WebViewGroups', NULL, N'WebView', N'Select', N'{"values":["WebViewGroups", "FirmAll"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (85, N'WebView::PowerUserGroupsXML', N'', NULL, N'WebView', N'XML', N'{"schema":"WebViewPowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (86, N'WebView::IncludeUnfinalizedTimeEntries', N'0', NULL, N'WebViewSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (87, N'EnabledDynamicGroupConfig', N'0', N'Dynamic Groups', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (88, N'LegalKEY::PowerUserGroupsXML', N'', NULL, N'LegalKEY', N'XML', N'{"schema":"LegalKEYPowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (89, N'LegalKEY::UseWallRank2ForSupersededSecurity', N'0', NULL, N'LegalKEY', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (90, N'Decisiv::Server', N'', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (91, N'Decisiv::Port', N'8080', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (92, N'Decisiv::Username', N'', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (93, N'Decisiv::Password', N'', NULL, N'Decisiv', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (94, N'Decisiv::OnlySecureMatters', N'0', NULL, N'Decisiv', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (95, N'Decisiv::ConnectionString', N'', NULL, N'Decisiv', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (96, N'EnabledExtendedValidation', N'0', N'Extended Validation', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (97, N'EnabledConflictResolutionValidation', N'1', N'Conflict Resolution Validation', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (98, N'DynamicUserGroupLimit', N'1000', N'Maximum Dynamic User Group Members', N'Dynamic Groups', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (99, N'DynamicMatterGroupLimit', N'1000', N'Maximum Dynamic Matter Group Members', N'Dynamic Groups', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (100, N'DynamicClientGroupLimit', N'500', N'Maximum Dynamic Client Group Members', N'Dynamic Groups', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (101, N'InterAction::ServerURL', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (102, N'InterAction::Username', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (103, N'InterAction::Password', N'', NULL, N'InterAction', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (104, N'InterAction::DefaultViewAccessLevel', N'5', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (105, N'InterAction::DefaultAccessXML', N' + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + false + false + false + false + true + false + true + false + false + false + false +', NULL, N'InterAction', N'XML', N'{"schema":"InterActionDefaultAccessXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (106, N'ValidationWarningDisplayLimit', N'100', N'Validation Warning Display Limit', N'Logging', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (107, N'CMS::EveryoneWorkGroupCode', N'EVERY', NULL, N'CMS', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (108, N'AcknowledgmentHyperlinkText', N'Click here to acknowledge this wall.', NULL, N'Acknowledgments', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (109, N'InterAction::WebServiceDomain', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (110, N'InterAction::WebServiceUsername', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (111, N'InterAction::WebServicePassword', N'', NULL, N'InterAction', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (112, N'Decisiv::PublicGroupDN', N'', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (113, N'Elite::ConnectionString', N'', NULL, N'Elite', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (114, N'Accutrac::ConnectionString', N'', NULL, N'Accutrac', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (115, N'FileSurf::ConnectionString', N'', NULL, N'FileSurf', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (116, N'EliteRecords::WallLogin', N'sa', NULL, N'EliteRecords', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (117, N'SharePoint::Username', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (118, N'SharePoint::Password', N'', NULL, N'SharePoint', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (119, N'SharePoint::Domain', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (120, N'SharePoint::WallsUserRights', N'WebDesigner', NULL, N'SharePoint', N'Select', N'{"values":["WebDesigner", "Contributor", "Reader", "Administrator"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (121, N'Omnia::LibraryXML', N'', NULL, N'OmniaSelfMaintaining', N'XML', N'{"schema":"OmniaLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (122, N'Elite3E::IncludePendingTimeEntries', N'', NULL, N'Elite3ESelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (123, N'BizTalk::MatterIDsUnique', N'0', NULL, N'BizTalk', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (124, N'BizTalk::SupportsContractorSecurity', N'0', NULL, N'BizTalk', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (127, N'BizTalk::Domain', N'', NULL, N'BizTalk', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (129, N'BizTalk::ItineraryXML', N'', NULL, N'BizTalk', N'XML', N'{"schema":"BizTalkItineraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (130, N'SecurityGroupIDDelimiter', N'_', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (131, N'SecurityGroupIDPrefix', N'ZZINT_', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (132, N'SecurityGroupNamePrefix', N'IntApp Security Group for', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (133, N'ContractorSecurityGroupIDPrefix', N'YYINT_', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (134, N'ContractorSecurityGroupNamePrefix', N'IntApp Contractor Security Group for', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (135, N'DMSNotifySecurityBreacher', N'1', NULL, N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (136, N'DMSSecurityBreachEmails', NULL, NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (137, N'DM5::MasterLibrary', N'', NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (138, N'DM5::InterfaceType', N'DirectSQL', NULL, N'DM5', N'Select', N'{"values":["DirectSQL", "DM5API"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (139, N'DM5::MonitoredActivityTypeXML', N'12023', NULL, N'DM5', N'XML', N'{"schema":"DM5MonitoredActivityTypeXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (141, N'Interwoven::GrantAccessRight', N'3', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (142, N'Interwoven::MasterLibrary', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (143, N'Interwoven::MonitoredActivityTypeXML', N'7468', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenMonitoredActivityTypeXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (144, N'Accutrac::IsActive', N'0', NULL, N'Accutrac', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (145, N'BizTalk::IsActive', N'0', NULL, N'BizTalk', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (146, N'CarpeDiemSelfMaintaining::IsActive', N'0', NULL, N'CarpeDiemSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (147, N'CMS::IsActive', N'0', NULL, N'CMS', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (148, N'CMSSelfMaintaining::IsActive', N'0', NULL, N'CMSSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (149, N'Decisiv::IsActive', N'0', NULL, N'Decisiv', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (150, N'DM5::IsActive', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (151, N'DM5SelfMaintaining::IsActive', N'0', NULL, N'DM5SelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (152, N'EliteRecords::IsActive', N'0', NULL, N'EliteRecords', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (153, N'Elite3ESelfMaintaining::IsActive', N'0', NULL, N'Elite3ESelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (154, N'FileSurf::IsActive', N'0', NULL, N'FileSurf', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (155, N'InterAction::IsActive', N'0', NULL, N'InterAction', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (156, N'Interwoven::IsActive', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (157, N'InterwovenSelfMaintaining::IsActive', N'0', NULL, N'InterwovenSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (158, N'IRM::IsActive', N'0', NULL, N'IRM', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (159, N'LegalKEY::IsActive', N'0', NULL, N'LegalKEY', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (160, N'OmniaSelfMaintaining::IsActive', N'0', NULL, N'OmniaSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (161, N'SharePoint::IsActive', N'0', NULL, N'SharePoint', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (162, N'TimeKM::IsActive', N'0', NULL, N'TimeKM', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (163, N'WebView::IsActive', N'0', NULL, N'WebView', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (164, N'WebViewSelfMaintaining::IsActive', N'0', NULL, N'WebViewSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (165, N'MessageBus::ReceiverXML', N'IntAppExtensionServiceQueue@<%=@webappserver%>', NULL, N'Extension Service', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (166, N'ExtensionServiceMaxRetryAttempts', N'10000', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (167, N'ExtensionServiceRetryInterval', N'300', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (168, N'ExtensionServiceDeleteFinishedJobs', N'1', NULL, N'Extension Service', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (169, N'ExtensionServiceSendAuditEmailIfNoRepairs', N'0', NULL, N'Extension Service', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (170, N'ExtensionServiceAuditEmails', N'', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (171, N'ExtensionServiceSQLTimeout', N'3600', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (172, N'DM5::DocExceptionsTable', NULL, NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (173, N'Interwoven::DocExceptionsColumn', NULL, NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (174, N'Accutrac::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Accutrac', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (175, N'BizTalk::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'BizTalk', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (176, N'CarpeDiemSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'CarpeDiemSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (177, N'CMS::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'CMS', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (178, N'CMSSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'CMSSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (179, N'Decisiv::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Decisiv', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (180, N'DM5::IncrementalRepairCronExpression', N'0 0/5 * * * ?', NULL, N'DM5', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (181, N'DM5::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'DM5', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (182, N'DM5SelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'DM5SelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (183, N'EliteRecords::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'EliteRecords', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (184, N'Elite3ESelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'Elite3ESelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (185, N'FileSurf::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'FileSurf', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (186, N'InterAction::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'InterAction', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (187, N'Interwoven::IncrementalRepairCronExpression', N'0 0/5 * * * ?', NULL, N'Interwoven', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (188, N'Interwoven::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Interwoven', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (189, N'InterwovenSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'InterwovenSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (190, N'IRM::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'IRM', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (191, N'LegalKEY::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (192, N'OmniaSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'OmniaSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (193, N'SharePoint::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'SharePoint', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (194, N'TimeKM::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'TimeKM', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (195, N'WebView::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'WebView', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (196, N'WebViewSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'WebViewSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (197, N'DefaultAccessGroup', N'', NULL, N'General', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (198, N'DM5::ContractorsGroup', N'', NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (199, N'DTESelfMaintaining::IsActive', N'0', NULL, N'DTESelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (200, N'DTESelfMaintaining::LibraryXML', N'', NULL, N'DTESelfMaintaining', N'XML', N'{"schema":"DTELibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (201, N'DTESelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'DTESelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (202, N'SharePoint::SecureDocumentsWithUniquePermissions', N'1', NULL, N'SharePoint', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (203, N'SharePoint::IgnoredUsersAndGroupsRegex', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (204, N'DTEAxiom::IsActive', N'0', NULL, N'DTEAxiom', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (205, N'DTEAxiom::LibraryXML', N'', NULL, N'DTEAxiom', N'XML', N'{"schema":"DTEAxiomLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (206, N'DTEAxiom::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'DTEAxiom', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (207, N'DefaultMTMMatterVisibility', N'3', NULL, N'Matter Team Manager', N'Select', N'{"values":["1", "2", "3", "4"]}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (208, N'DefaultMTMWallVisibility', N'3', NULL, N'Matter Team Manager', N'Select', N'{"values":["1", "2", "3", "4", "5"]}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (209, N'EnabledMTMNotifications', N'0', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (210, N'MTMApplicationUrl', N'http://<%=@hostname%>/MatterTeamManager/', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (211, N'DM5::DocumentsPerChunk', N'500', NULL, N'DM5', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (212, N'Interwoven::DocumentsPerChunk', N'500', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (213, N'Mail::SMTPTimeout', N'600', NULL, N'Notifications', N'Numeric', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (214, N'TimeKM::SetRestrictedSecurity', N'0', NULL, N'TimeKM', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (215, N'EnabledAddMatterTeamButtonExclusionary', N'0', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (216, N'EnabledSelfMaintainingMatterTeams', N'0', N'Self-Maintaining for Matter Teams', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (217, N'EnabledSelfMaintainingForMatterAdmins', N'1', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (218, N'DefaultMatterTeamRole', N'', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (219, N'SelfMaintainingCriteriaEnabledMatterTeams', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (220, N'EnabledLimitedAccessValidation', N'0', N'Limited Access Validation', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (221, N'GenericTimeEntrySelfMaintaining::LibraryXML', N'', N'', N'GenericTimeEntrySelfMaintaining', N'XML', N'{"schema":"GenericTimeEntrySelfMaintainingLibraryXML.xsd"}', N'Extensions') +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (222, N'GenericTimeEntrySelfMaintaining::IsActive', N'0', N'', N'GenericTimeEntrySelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (223, N'GenericTimeEntrySelfMaintaining::CronExpression', N'0 30 0 * * ?', N'', N'GenericTimeEntrySelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (224, N'GenericTimeEntrySelfMaintaining::RemoteIDSource', N'TimeEntry', N'', N'GenericTimeEntrySelfMaintaining', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (225, N'GenericDMSSelfMaintaining::LibraryXML', N'', N'', N'GenericDMSSelfMaintaining', N'XML', N'{"schema":"GenericDMSSelfMaintainingLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (226, N'GenericDMSSelfMaintaining::IsActive', N'0', N'', N'GenericDMSSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (227, N'GenericDMSSelfMaintaining::CronExpression', N'0 30 0 * * ?', N'', N'GenericDMSSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (228, N'GenericDMSSelfMaintaining::UseDateRange', N'0', N'', N'GenericDMSSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (229, N'BizTalk::IncludeLimitedAccessUsers', N'0', NULL, N'BizTalk', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (230, N'NetDocuments::IsActive', N'0', NULL, N'NetDocuments', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (241, N'NetDocuments::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'NetDocuments', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (242, N'NetDocuments::AdminEmail', N'', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (243, N'SharePoint::ConnectionString', N'', NULL, N'SharePoint', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (244, N'SharePoint::InterfaceType', N'ClientObjectModel', NULL, N'SharePoint', N'Select', N'{"values":["ClientObjectModel", "HttpModule"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (245, N'SharePoint::WallsContractorRights', N'WebDesigner', NULL, N'SharePoint', N'Select', N'{"values":["WebDesigner", "Contributor", "Reader", "Administrator"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (246, N'SharePoint::MaxOperationsPerRequest', N'100', NULL, N'SharePoint', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (249, N'BizTalk::WebServiceTimeout', N'100', NULL, N'BizTalk', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (250, N'Interwoven::EnabledUTC', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (251, N'EnabledCustomNotificationObjects', N'0', NULL, N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (252, N'EnabledAutoAddMatterTeams', N'0', N'Auto Adding Matter Teams', N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (253, N'SharePoint::AccessDeniedURL', N'/_layouts/AccessDenied.aspx', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (254, N'SharePoint::HttpModuleInclusionaryModel', N'Standard', NULL, N'SharePoint', N'Select', N'{"values":["Standard", "HttpModuleOnly"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (255, N'SharePoint::CacheRefreshInterval', N'600', NULL, N'SharePoint', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (257, N'EnabledObjectReleaseExceptions', N'0', N'Object Release Exceptions', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (258, N'ObjectReleaseExceptionsDefaultDuration', N'0', NULL, N'Object Exceptions', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (259, N'ObjectReleaseExceptionsEmails', N'', NULL, N'Object Exceptions', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (260, N'ObjectReleaseExceptionsEmailUserCreatingException', N'1', NULL, N'Object Exceptions', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (261, N'ObjectReleaseExceptionsEmailUserGrantedAccess', N'1', NULL, N'Object Exceptions', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (262, N'SecurityGroupIDPermissionLevelDelimiter', N'.', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (263, N'Interwoven::PermissionsXML', N' + + READ + 1 + 1 + + + READWRITE + 2 + 2 + + + FULLACCESS + 3 + 3 + +', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenPermissionsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (264, N'DM5::PermissionsXML', N' +', NULL, N'DM5', N'XML', N'{"schema":"DM5PermissionsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (265, N'Interwoven::IgnoredDocumentTypesXML', N' +', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenIgnoredDocumentTypesXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (266, N'DM5::IgnoredDocumentTypesXML', N' +', NULL, N'DM5', N'XML', N'{"schema":"DM5IgnoredDocumentTypesXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (267, N'DTEAxiomSelfMaintaining::IsActive', N'0', NULL, N'DTEAxiomSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (268, N'DTEAxiomSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'DTEAxiomSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (269, N'iManage::PluginSettingsUpdateInterval', N'24', NULL, N'Plugins', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (270, N'iManage::MTMLauncherMenuText', N'Manage Matter Team', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (271, N'iManage::MTMLauncherMenuPosition', N'0', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (272, N'iManage::SecurityValidationSecurityChangeText', N'Security change', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (273, N'iManage::SecurityValidationViolationText', N'is in violation of wall', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (274, N'iManage::SecurityValidationViolationTextPlural', N'is in violation of walls', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (275, N'iManage::SecurityValidationPublicPrivateText', N'You are attempting to make information public in violation of a confidentiality policy. The security changes have been automatically reversed.', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (276, N'iManage::SecurityValidationSecurityErrorText', N'You are attempting to grant access to individuals in violation of an ethical wall or confidentiality policy. The security changes have been automatically reversed.', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (277, N'iManage::SecurityValidationRemoveViolatingText', N'You are attempting to grant access to individuals in violation of an ethical wall. You may remove the users in violation or cancel all security changes.', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (278, N'iManage::SecurityValidationReleaseExceptionText', N'You are attempting to grant access to individuals in violation of a confidentiality policy. If you choose to proceed, you should be sure they have a legitimate and urgent need to access this information.', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (279, N'DMSNotifySecurityBreachee', N'0', NULL, N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (280, N'Interwoven::DisableInclusionaryType', N'Standard', NULL, N'Interwoven', N'Select', N'{"values":["Standard", "Preserve"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (281, N'DM5::DisableInclusionaryType', N'Standard', NULL, N'DM5', N'Select', N'{"values":["Standard", "Preserve"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (282, N'FileShare::IsActive', N'0', NULL, N'FileShare', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (283, N'FileShare::Structure', N'Hierarchical', NULL, N'FileShare', N'Select', N'{"values":["Hierarchical", "Flat"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (284, N'FileShare::UserName', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (285, N'FileShare::Password', N'', NULL, N'FileShare', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (286, N'FileShare::WatchSecurityEvents', N'1', NULL, N'FileShare', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (287, N'FileShare::RootDirectoryXML', N' + + exampleshare + +\\servername\exampleshare + + [0-9]{5})]]> + [0-9]{4})]]> + FullControl + Modify +Read + + + INTAPP\ITStaff + FullControl + + + + + + FullControl + Modify +Read + + +', NULL, N'FileShare', N'XML', N'{"schema":"FileShareRootDirectoryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (288, N'FileShare::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'FileShare', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (289, N'FileShare::IncrementalRepairCronExpression', N'0 0/5 * * * ?', NULL, N'FileShare', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (291, N'ActivityRetentionDays', N'90', NULL, N'Activity Tracker', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (292, N'ActivityTrackerApplicationURL', N'http://', NULL, N'Activity Tracker', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (293, N'ThresholdMaxAlerts', N'250', NULL, N'Activity Tracker', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (294, N'SharePoint::ClientPropertyName', N'Client', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (295, N'SharePoint::MatterPropertyName', N'Matter', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (296, N'DM5::UseShortSecurityGroupID', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (297, N'FileSurf::UseShortSecurityGroupID', N'0', NULL, N'FileSurf', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (298, N'LegalKEYAdverseParties::IsActive', N'0', NULL, N'LegalKEYAdverseParties', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (299, N'LegalKEYAdverseParties::CodesXML', N'', NULL, N'LegalKEYAdverseParties', N'XML', N'{"schema":"LegalKEYAdversePartiesCodesXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (300, N'LegalKEYAdverseParties::CronExpression', N'0 30 1 * * ?', NULL, N'LegalKEYAdverseParties', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (301, N'Accutrac::AuditEmails', N'', NULL, N'Accutrac', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (302, N'BizTalk::AuditEmails', N'', NULL, N'BizTalk', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (303, N'CMS::AuditEmails', N'', NULL, N'CMS', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (304, N'Decisiv::AuditEmails', N'', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (305, N'DM5::AuditEmails', N'', NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (306, N'DTEAxiom::AuditEmails', N'', NULL, N'DTEAxiom', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (307, N'EliteRecords::AuditEmails', N'', NULL, N'EliteRecords', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (308, N'FileShare::AuditEmails', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (309, N'FileSurf::AuditEmails', N'', NULL, N'FileSurf', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (310, N'InterAction::AuditEmails', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (311, N'Interwoven::AuditEmails', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (312, N'IRM::AuditEmails', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (313, N'LegalKEY::AuditEmails', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (314, N'NetDocuments::AuditEmails', N'', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (315, N'SharePoint::AuditEmails', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (316, N'TimeKM::AuditEmails', N'', NULL, N'TimeKM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (317, N'WebView::AuditEmails', N'', NULL, N'WebView', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (318, N'NetDocuments::IgnoredDocumentTypesXML', N' +', NULL, N'NetDocuments', N'XML', N'{"schema":"NetDocumentsIgnoredDocumentTypesXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (321, N'SharePoint::AccessDeniedURLAppendRedirect', N'1', NULL, N'SharePoint', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (322, N'DM5::GrantAuthorAccess', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (323, N'DM5::GrantTypistAccess', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (324, N'MTMInactiveMemberAdditionText', N'User {username} will be added in an inactive state due to an existing wall.', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (325, N'MTMInactiveMemberHoverText', N'This matter team member is inactive because the user is excluded from the matter by an existing wall.', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (326, N'Interwoven::UpdateDocHistory', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (327, N'DM5::UpdateActivityLog', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (328, N'Interwoven::SecurityBreachIgnoredUsersXML', N'', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenSecurityBreachIgnoredUsersXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (329, N'DM5::SecurityBreachIgnoredUsersXML', N'', NULL, N'DM5', N'XML', N'{"schema":"DM5SecurityBreachIgnoredUsersXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (330, N'FileShare::ExceptedFoldersRegex', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (331, N'UserNotificationObjectSortColumn', N'', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (332, N'Interwoven::AllowExternalUsersAndGroups', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (333, N'EliteRecords::PowerUsersXML', N'', NULL, N'EliteRecords', N'XML', N'{"schema":"EliteRecordsPowerUsersXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (334, N'IsLinqLoggingEnabled', N'0', NULL, N'Logging', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (335, N'WBApplicationURL', N'http://<%=@webappserver%>/<%=@wbapplicationwebsitename%>/', NULL, N'General', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (336, N'Interwoven::SecureWorkspacesAndFolders', N'1', N'Interwoven Workspace Security', N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (337, N'EnabledObjectConfinementExceptions', N'0', N'Object Confinement Exceptions', N'Features', N'ComponentSwitcher', NULL, NULL) +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (338, N'EnabledMTMFeaturesInWB', N'1', N'MTM Features in Intapp Walls', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (339, N'EnabledActivityTrackerApplication', N'0', N'Activity Tracker', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (340, N'EnabledMTMApplication', N'1', N'Matter Team Manager', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (341, N'EnabledWBApplication', N'1', N'Intapp Walls', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (342, N'WallsDB::SQLTimeout', N'120', NULL, N'General', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (343, N'SystemLog::MaximumRows', N'500000', NULL, N'Logging', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (344, N'IRM::LibraryXML', N'', NULL, N'IRM', N'XML', N'{"schema":"IRMLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (345, N'ExtensionServiceConfigXML', N'', NULL, N'Extension Service', N'XML', N'{"schema":"ExtensionServiceConfigXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (346, N'CarpeDiem::IncludeUnfinalizedTimeEntries', N'0', NULL, N'CarpeDiemSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (347, N'CMS::IncludeUnfinalizedTimeEntries', N'0', NULL, N'CMSSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (348, N'DTESelfMaintaining::IncludeUnfinalizedTimeEntries', N'0', NULL, N'DTESelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (349, N'DTEAxiom::IncludeUnfinalizedTimeEntries', N'0', NULL, N'DTEAxiomSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (350, N'Interwoven::LastRepairSecondsToOverlap', N'0', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (351, N'FileShare::ConnectionString', N'', NULL, N'FileShare', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (352, N'Interwoven::IgnoredDocumentsXML', N' +', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenIgnoredDocumentsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (353, N'ProLaw::IsActive', N'0', NULL, N'ProLaw', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (354, N'ProLaw::LibraryXML', N'', NULL, N'ProLaw', N'XML', N'{"schema":"ProLawLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (355, N'ProLaw::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'ProLaw', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (356, N'Interwoven::IgnoredGroupName', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (357, N'TimeBuilder::IsActive', N'0', NULL, N'TimeBuilder', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (358, N'TimeBuilder::LibraryXML', N'', NULL, N'TimeBuilder', N'XML', N'{"schema":"TimeBuilderLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (359, N'TimeBuilder::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'TimeBuilder', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (360, N'Decisiv::IsLegacyVersion', N'0', NULL, N'Decisiv', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (361, N'EnabledLegalHolds', N'0', N'Legal Holds', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (366, N'LegalHoldsAcknowledgmentConfigurableText', N'By clicking here, you confirm that you have read and acknowledged this hold', NULL, N'Acknowledgments', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (367, N'LegalHoldsAcknowledgmentHyperlinkText', N'Click here to acknowledge this hold.', NULL, N'Acknowledgments', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (368, N'LegalHolds::DefaultSelfMaintainingMinHours', N'5', NULL, N'Legal Holds', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (369, N'EnabledSelfMaintainingLegalHolds', N'0', N'Self-Maintaining for Legal Holds', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (370, N'SelfMaintainingCriteriaEnabledLegalHolds', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (371, N'EnabledRelationshipPairing', N'0', N'Relationship Pairing', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (372, N'EnabledRelationshipPairingForMatterTeams', N'0', N'Relationship Pairing for Matter Teams', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (373, N'PairedMatterTeamRole', N'', N'The MTM role ID to assign to subordinate entity when their attorneys are added to the "members" side of a matter team', N'Relationship Pairing', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (374, N'PairedMatterTeamAdminRole', N'', N'The MTM admin role ID to assign to subordinate entity when their attorneys are added to the "administrators" side of a matter team', N'Relationship Pairing', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (375, N'PairedRelationshipID', N'', N'The Id that is used to define the "attorney-secretary" relationship', N'Relationship Pairing', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (376, N'PairedWallRole', N'', N'The wall role ID to assign to secretaries when their attorneys are added to a wall', N'Relationship Pairing', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (377, N'CarpeDiem::LibraryXML', N'', NULL, N'CarpeDiem', N'XML', N'{"schema":"CarpeDiemLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (378, N'UseMultiValuedFinancialUserIDs', N'0', NULL, N'Extension Service', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (381, N'EnabledWallsAndSecurity', N'1', N'Walls and Security', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (382, N'Interwoven::SecureLegalHolds', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (384, N'DM5::SecureLegalHolds', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (385, N'Interwoven::UpdateLegalHoldDocHistory', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (386, N'DM5::UpdateLegalHoldActivityLog', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (387, N'MatterTeamSubscriptionType', N'', NULL, N'Matter Team Manager', N'Select', N'{"values":["","OFF", "AUTO", "REQUEST"]}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (388, N'MatterTeamSubscriptionRequestHeaderText', N'Please review the following matter team access request:', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (389, N'MatterTeamSubscriptionDenyRequestHyperlinkText', N'Deny Request', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (390, N'MatterTeamSubscriptionApproveRequestHyperlinkText', N'Approve Request', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (391, N'MatterTeamSubscriptionRequestInterval', N'1440', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (392, N'EnabledDigestNotifications', N'0', N'Digest Notifications', N'Email', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (393, N'SendDigestNotificationsCronExpression', N'0 0 1 ? * SAT', NULL, N'Digest Notifications', N'Cron expression', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (394, N'DigestSubject', N'Intapp Walls Digest Notification', NULL, N'Digest Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (395, N'WebViewTimekeeper::IsActive', N'0', NULL, N'WebViewTimekeeper', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (396, N'WebViewTimekeeper::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'WebViewTimekeeper', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (397, N'WebViewTimekeeper::ExclusionarySecurity', N'0', NULL, N'WebViewTimekeeper', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (398, N'Interwoven::LegalHoldColumn', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (399, N'TimeBuilderSelfMaintaining::IsActive', N'0', NULL, N'TimeBuilderSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (400, N'TimeBuilderSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'TimeBuilderSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (401, N'TimeBuilderSelfMaintaining::IncludeUnfinalizedTimeEntries', N'0', NULL, N'TimeBuilderSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (402, N'ExecuteTrackersCronExpression', N'0 0/5 * * * ?', NULL, N'Activity Tracker', N'Cron expression', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (403, N'ExtensionServiceMaxRepairsInAuditEmail', N'100000', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (404, N'EnabledSelfMaintainingDateRange', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (405, N'DefaultMTMSelfMaintainingIntervalType', N'Fixed Lookback And Ongoing', NULL, N'Matter Team Manager', N'Select', N'{"values":["Fixed Lookback And Ongoing", "Ongoing Only", "All Past Only", "Fixed Lookback Only", "No Default"]}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (406, N'CarpeDiem::SecureChar', N'R', NULL, N'CarpeDiem', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (407, N'CarpeDiem::IsActive', N'0', NULL, N'CarpeDiem', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (408, N'CarpeDiem::AuditEmails', N'', NULL, N'CarpeDiem', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (409, N'Interwoven::ContractorGrantAccessRight', N'3', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (410, N'CarpeDiem::ActiveChar', N'A', NULL, N'CarpeDiem', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (411, N'CMS::IsLegacyVersion', N'1', NULL, N'CMS', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (412, N'CarpeDiem::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'CarpeDiem', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (413, N'Generic::IsActive', N'0', NULL, N'Generic', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (414, N'Generic::LibraryXML', N'', NULL, N'Generic', N'XML', N'{"schema":"GenericLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (415, N'Generic::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Generic', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (416, N'Generic::EntityRemoteIDSource', N'DMS', NULL, N'Generic', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (417, N'Generic::UserRemoteIDSource', N'DMS', NULL, N'Generic', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (418, N'CarpeDiem::DummyUser', N'', NULL, N'CarpeDiem', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (419, N'Interwoven::RepairGrantAccessRight', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (420, N'Interwoven::RepairContractorGrantAccessRight', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (421, N'FileShare::UseActiveDirectorySecurityGroups', N'0', NULL, N'FileShare', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (422, N'FileShare::DomainControllerAddress', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (423, N'FileShare::ActiveDirectoryUserName', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (424, N'FileShare::ActiveDirectoryPassword', N'', NULL, N'FileShare', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (426, N'ImportActivityBeforeTrackerExecution', N'1', NULL, N'Activity Tracker', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (427, N'ImportActivityCronExpression', N'0 30 2 * * ?', NULL, N'Activity Tracker', N'Cron expression', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (428, N'AppVersion', N'6.2.2002.5', NULL, N'General', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (429, N'ActivityRetentionPolicyCronExpression', N'0 0 2 * * ?', NULL, N'Activity Tracker', N'Cron expression', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (431, N'Box::IsActive', N'0', NULL, N'Box', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (432, N'Box::ClientMatterRegex', N'.*ID:(?[0-9]{5})-(?[0-9]{4}).*|.*ID:(?[0-9]{5}).*', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (433, N'Box::ApiKey', N'jjlj1vfxv50z6na834hrk6n7sfatu4tb', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (435, N'NetDocuments::CabinetsXML', N'VESVES00', NULL, N'NetDocuments', N'XML', N'{"schema":"NetDocumentsCabinetsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (436, N'DefaultAlertThresholdLimit', N'0', NULL, N'Activity Tracker', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (437, N'SharePoint::EnabledClaimsAuthentication', N'0', NULL, N'SharePoint', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (438, N'Interwoven::IgnoredWorkspacesAndFoldersXML', N'', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenIgnoredWorkspacesAndFoldersXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (439, N'EnabledWallExpirationDate', N'1', NULL, N'General', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (440, N'EnabledWallEffectiveDate', N'1', NULL, N'General', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (441, N'Interwoven::PowerUserGroupsXML', N'', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenPowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (442, N'Elite3E::Username', N'', NULL, N'Elite3E', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (443, N'Elite3E::Password', N'', NULL, N'Elite3E', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (444, N'Elite3E::Domain', N'', NULL, N'Elite3E', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (445, N'Elite3E::WebServiceUrl', N'', NULL, N'Elite3E', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (446, N'Elite3E::CommentText', N'MANAGED BY WALL BUILDER', NULL, N'Elite3E', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (447, N'Elite3EEthicalWalls::AdminUser', N'', NULL, N'Elite3EEthicalWalls', N'Text', NULL, N'Extensions') +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (448, N'Elite3EEthicalWalls::AccessLvlConfig', N'Manage', NULL, N'Elite3EEthicalWalls', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (449, N'Elite3EEthicalWalls::IsActive', N'0', NULL, N'Elite3EEthicalWalls', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (450, N'Elite3EEthicalWalls::UserRemoteIdSource', N'WindowsNetworkLogon', NULL, N'Elite3EEthicalWalls', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (451, N'Elite3EEthicalWalls::EliteUserSource', N'networkalias', NULL, N'Elite3EEthicalWalls', N'Select', N'{"values":["guid", "networkalias", "emailaddr", "username"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (452, N'Elite3EEthicalWalls::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Elite3EEthicalWalls', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (453, N'Elite3EEthicalWalls::AuditEmails', N'', NULL, N'Elite3EEthicalWalls', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (454, N'Elite3EMattWorkTkpr::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Elite3EMattWorkTkpr', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (455, N'Elite3EMattWorkTkpr::AuditEmails', N'', NULL, N'Elite3EMattWorkTkpr', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (456, N'Elite3EMattWorkTkpr::IsActive', N'0', NULL, N'Elite3EMattWorkTkpr', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (457, N'Elite3E::ConnectionString', N'', NULL, N'Elite3E', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (458, N'EnabledFoundationalPolicies', N'0', N'Foundational Policies', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (461, N'Foundational::DefaultSelfMaintainingMinHours', N'5', NULL, N'Foundational', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (462, N'InitialSecurityConfinement', N'0', NULL, N'Object Exceptions', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (463, N'LegalKEY::LibraryXML', N'', NULL, N'LegalKEY', N'XML', N'{"schema":"LegalKEYLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (464, N'Interwoven::FoundationalGrantAccessRight', N'3', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (465, N'Interwoven::RepairFoundationalGrantAccessRight', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (466, N'Interwoven::IncrementalRepairWorkspacesAndFolders', N'0', N'Interwoven Workspace Security', N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (467, N'FoundationalSecurityGroupIDPrefix', N'ZZB_', NULL, N'Foundational', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (468, N'FoundationalSecurityGroupNamePrefix', N'IntApp Foundational Security Group for', NULL, N'Foundational', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (469, N'CMS::FoundationalGroupIDPrefix', N'^', NULL, N'CMS', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (470, N'CMS::SecureFoundationalPolicies', N'0', NULL, N'CMS', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (471, N'Interwoven::SecureFoundationalPolicies', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (472, N'Interwoven::ContentSecurityColumn', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (473, N'Open::IsActive', N'0', NULL, N'Open', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (474, N'Open::LibraryXML', N'', NULL, N'Open', N'XML', N'{"schema":"OpenLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (475, N'Open::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Open', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (476, N'Box::ApiSecretKey', N'SDU4TpNpvVmdMm60s5UADrYLpQciOZuC', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (477, N'Box::RefreshToken', N'', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (478, N'Box::AdminLogin', N'', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (479, N'SecurityBreachEmailMessageHtml', N'

Prevented Breach Notification

Intapp has detected that access settings on the "{ObjectName}" ({ObjectType}#: {ObjectNumber}{ObjectVersion}) have been modified{BreacherUser}.

+

This {ObjectType} is currently protected by a wall. Security has been reapplied{BreachDisallowedMessage}.

+

Client: {ClientID} {ClientDesc}
+Matter: {MatterID} {MatterDesc}
+Library: {Library}

', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (480, N'SecurityBreachDisallowFormat', N' to disallow access by the {BreachPrincipalType} "{BreachPrincipalDesc}" (ID: {BreachPrincipalId})"', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (481, N'DTEAxiom::IsLegacyVersion', N'0', NULL, N'DTEAxiom', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (482, N'BizTalk::WebServiceXML', N'', NULL, N'BizTalk', N'XML', N'{"schema":"BizTalkWebServiceXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (483, N'Interwoven::DisableFoundationalType', N'Standard', NULL, N'Interwoven', N'Select', N'{"values":["Standard", "Preserve", "Alter"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (484, N'Interwoven::FoundationalAlterAccessRight', N'1', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (485, N'NetDocuments::SecureLegalHolds', N'0', NULL, N'NetDocuments', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (486, N'Foundational::MaxFoundationalSecurityJobSize', N'100', NULL, N'Foundational', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (487, N'FileShare::SecureFoundationalPolicies', N'0', NULL, N'FileShare', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (488, N'NetDocuments::SecureWorkspaces', N'0', N'NetDocuments Workspace Security', N'NetDocuments', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (489, N'RecalculateDEGMembershipsCronExpression', N'0 0 4 ? * TUE', NULL, N'Dynamic Groups', N'Cron expression', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (490, N'CMS::PowerUserGroupsXML', N'', NULL, N'CMS', N'XML', N'{"schema":"CMSPowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (491, N'DM5::SecureFoundationalPolicies', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (492, N'DM5::FoundationalAccessRight', N'255', NULL, N'DM5', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (493, N'DM5::DisableFoundationalType', N'Standard', NULL, N'DM5', N'Select', N'{"values":["Standard", "Preserve", "Alter"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (494, N'DM5::FoundationalAlterAccessRight', N'1', NULL, N'DM5', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (495, N'Elite3EEthicalWalls::WallsPerChunk', N'2000', NULL, N'Elite3EEthicalWalls', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (496, N'Elite3EEthicalWalls::WallsPerChunkForCreateAndDelete', N'4', NULL, N'Elite3EEthicalWalls', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (497, N'Elite3EEthicalWalls::WebServiceTimeout', N'3600', NULL, N'Elite3EEthicalWalls', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (498, N'MTMEmailMaxRecipients', N'50', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (499, N'EnabledPasswordEncryption', N'0', NULL, N'General', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (500, N'SharePoint::HttpModuleUrlContinueMatchRegex', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (501, N'SharePoint::HttpModuleUrlAbortMatchRegex', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (502, N'DTEAxiom::SecureUserType', N'TIMEKEEPER', NULL, N'DTEAxiom', N'Select', N'{"values":["OPERATOR", "TIMEKEEPER", "BOTH"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (503, N'DigestEmailHeader', N'', NULL, N'Digest Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (504, N'CalculateStatisticsCronExpression', N'0 03 3 * * ?', NULL, N'Activity Tracker', N'Cron expression', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (505, N'SharePoint::DisableBehavior', N'Preserve', NULL, N'SharePoint', N'Select', N'{"values":["Preserve", "CopyFromParent", "Alter", "PreserveAlter"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (506, N'SharePoint::DisableAlterPrincipalsXML', N'', NULL, N'SharePoint', N'XML', N'{"schema":"SharePointDisableAlterPrincipalsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (507, N'EnabledMatterTeamTimeEntryData', N'1', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (508, N'SharePoint::PowerUsersAndGroupsXML', N'', NULL, N'SharePoint', N'XML', N'{"schema":"SharePointPowerUsersAndGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (509, N'IntermediateDbConnectionString', N'server=(local);database=ActivityTracker; Integrated Security=SSPI', NULL, N'Activity Tracker', N'Connection string', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (511, N'NetDocuments::RefreshToken', N'', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (512, N'NetDocuments::ClientId', N'AP-KQUYA514', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (513, N'NetDocuments::ClientSecret', N'iUeFZkOD7mv3nHBJGAifLM2kpRaf7JONNM9za3sYQxk5d0i6', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (514, N'NetDocuments::RESTServiceRegion', N'US', NULL, N'NetDocuments', N'Select', N'{"values":["US", "EU", "AU"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (515, N'NetDocuments::UserRemoteIdSource', N'DMS', NULL, N'NetDocuments', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (516, N'MatterTeamSubscriptionRequireReason', N'1', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (517, N'MatterTeamSubscriptionText', N'You have requested to join this matter team. Are you sure?', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (518, N'FileShare::SmartRepairCronExpression', N'0 30 0 * * ?', NULL, N'FileShare', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (519, N'IsAccutracVisible', N'0', N'Accutrac', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (520, N'IsBizTalkVisible', N'0', N'BizTalk', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (521, N'IsBoxVisible', N'0', N'Box', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (522, N'IsCarpeDiemVisible', N'0', N'Carpe Diem', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (523, N'IsCarpeDiemSelfMaintainingVisible', N'0', N'Carpe Diem Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (524, N'IsCMSVisible', N'0', N'CMS', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (525, N'IsCMSSelfMaintainingVisible', N'0', N'CMS Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (526, N'IsDecisivVisible', N'0', N'Decisiv', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (527, N'IsDM5Visible', N'0', N'DM5', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (528, N'IsDM5SelfMaintainingVisible', N'0', N'DM5 Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (529, N'IsDTEAxiomVisible', N'0', N'DTE Axiom', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (530, N'IsDTEAxiomSelfMaintainingVisible', N'0', N'DTE Axiom Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (531, N'IsDTESelfMaintainingVisible', N'0', N'DTE Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (532, N'IsEliteVisible', N'0', N'Elite', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (533, N'IsElite3EVisible', N'0', N'Elite 3E', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (534, N'IsElite3EEthicalWallsVisible', N'0', N'Elite 3E Ethical Walls', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (535, N'IsElite3EMattWorkTkprVisible', N'0', N'Elite 3E Matter Working Timekeeper', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (536, N'IsElite3ESelfMaintainingVisible', N'0', N'Elite 3E Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (537, N'IsEliteRecordsVisible', N'0', N'Elite Records', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (538, N'IsFileShareVisible', N'0', N'FileShare', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (539, N'IsFileSurfVisible', N'0', N'FileSurf', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (540, N'IsGenericVisible', N'0', N'Generic', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (541, N'IsGenericDMSSelfMaintainingVisible', N'0', N'Generic DMS Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (542, N'IsGenericTimeEntrySelfMaintainingVisible', N'0', N'Generic Time Entry Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (543, N'IsInterActionVisible', N'0', N'InterAction', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (544, N'IsInterwovenVisible', N'0', N'Interwoven', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (545, N'IsInterwovenSelfMaintainingVisible', N'0', N'Interwoven Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (546, N'IsIRMVisible', N'0', N'IRM', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (547, N'IsLegalKEYVisible', N'0', N'Legal KEY', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (548, N'IsLegalKEYAdversePartiesVisible', N'0', N'Legal KEY Adverse Parties', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (549, N'IsNetDocumentsVisible', N'0', N'NetDocuments', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (550, N'IsOmniaSelfMaintainingVisible', N'0', N'Omnia Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (551, N'IsOpenVisible', N'0', N'Open', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (552, N'IsProLawVisible', N'0', N'ProLaw', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (553, N'IsSharePointVisible', N'0', N'SharePoint', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (554, N'IsTimeBuilderVisible', N'0', N'TimeBuilder', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (555, N'IsTimeBuilderSelfMaintainingVisible', N'0', N'TimeBuilder Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (556, N'IsTimeKMVisible', N'0', N'TimeKM', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (557, N'IsWebViewVisible', N'0', N'WebView', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (558, N'IsWebViewSelfMaintainingVisible', N'0', N'WebView Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (559, N'IsWebViewTimekeeperVisible', N'0', N'WebView Timekeeper', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (560, N'WallsMessageQueue', N'IntappWBQueue@<%=@webappserver%>', NULL, N'General', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (561, N'MatterTeamManagerMessageQueue', N'IntappMTMQueue@<%=@webappserver%>', NULL, N'Matter Team Manager', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (562, N'ActivityTrackerMessageQueue', N'', NULL, N'Activity Tracker', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (563, N'APIServiceMessageQueue', N'', NULL, N'API Service', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (564, N'EnabledMTMAutoJoinEmail', N'0', NULL, N'Matter Team Manager', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (565, N'MTMAutoJoinEmailHeaderText', N'Please review the following matter team user addition:', NULL, N'Matter Team Manager', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (566, N'MTMAutoJoinEmailRejectAdditionHyperlinkText', N'Reject Addition', NULL, N'Matter Team Manager', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (567, N'FileShare::AccessRightsXML', N' + + FullControl + ThisFolderSubFoldersAndFiles + FullControl + + + Modify + ThisFolderSubFoldersAndFiles + Modify + + + ReadWrite + ThisFolderSubFoldersAndFiles + Read + Write + + + ReadWriteAndExecute + ThisFolderSubFoldersAndFiles + Read + Write + ExecuteFile + + + ReadAndExecute + ThisFolderSubFoldersAndFiles + ReadAndExecute + + + Read + ThisFolderSubFoldersAndFiles + Read + + + Write + ThisFolderSubFoldersAndFiles + Write + +', NULL, N'FileShare', N'XML', N'{"schema":"FileShareAccessRightsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (568, N'SharePoint::UserRemoteIdSource', N'WindowsNetworkLogon', NULL, N'SharePoint', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (569, N'MatterCenter::Username', N'', NULL, N'MatterCenter', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (570, N'MatterCenter::Password', N'', NULL, N'MatterCenter', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (571, N'MatterCenter::WallUserRights', N'WebDesigner', NULL, N'MatterCenter', N'Select', N'{"values":["WebDesigner", "Contributor", "Reader", "Administrator"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (572, N'MatterCenter::IsActive', N'0', NULL, N'MatterCenter', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (573, N'MatterCenter::ConnectionString', N'', NULL, N'MatterCenter', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (574, N'MatterCenter::WallContractorRights', N'WebDesigner', NULL, N'MatterCenter', N'Select', N'{"values":["WebDesigner", "Contributor", "Reader", "Administrator"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (575, N'MatterCenter::MaxOperationsPerRequest', N'100', NULL, N'MatterCenter', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (576, N'MatterCenter::SecureDocumentsWithUniquePermissions', N'1', NULL, N'MatterCenter', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (577, N'MatterCenter::IgnoredUsersAndGroupsRegex', N'', NULL, N'MatterCenter', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (578, N'MatterCenter::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'MatterCenter', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (579, N'MatterCenter::AuditEmails', N'', NULL, N'MatterCenter', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (580, N'MatterCenter::PowerUsersAndGroupsXML', N'', NULL, N'MatterCenter', N'XML', N'{"schema":"SharePointPowerUsersAndGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (581, N'MatterCenter::DisableBehavior', N'Preserve', NULL, N'MatterCenter', N'Select', N'{"values":["Preserve", "CopyFromParent", "Alter", "PreserveAlter"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (582, N'MatterCenter::DisableAlterPrincipalsXML', N'', NULL, N'MatterCenter', N'XML', N'{"schema":"SharePointDisableAlterPrincipalsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (583, N'IsMatterCenterVisible', N'0', N'Matter Center', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (584, N'MatterCenter::UserRemoteIdSource', N'EmailAddress', NULL, N'MatterCenter', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (585, N'CarpeDiemNG::IsActive', N'0', NULL, N'CarpeDiemNG', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (586, N'CarpeDiemNG::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'CarpeDiemNG', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (587, N'CarpeDiemNG::AuditEmails', N'', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (588, N'CarpeDiemNG::Username', N'', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (589, N'CarpeDiemNG::Password', N'', NULL, N'CarpeDiemNG', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (590, N'CarpeDiemNG::Domain', N'', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (591, N'CarpeDiemNG::WebServiceUrl', N'', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (592, N'CarpeDiemNG::SetRestrictedSecurity', N'0', NULL, N'CarpeDiemNG', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (593, N'IsCarpeDiemNGVisible', N'0', N'Carpe Diem NG', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (594, N'CarpeDiemNGSelfMaintaining::ConnectionString', N'', NULL, N'CarpeDiemNGSelfMaintaining', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (595, N'CarpeDiemNGSelfMaintaining::IsActive', N'0', NULL, N'CarpeDiemNGSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (596, N'CarpeDiemNGSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'CarpeDiemNGSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (597, N'CarpeDiemNGSelfMaintaining::IncludeUnfinalizedTimeEntries', N'0', NULL, N'CarpeDiemNGSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (598, N'IsCarpeDiemNGSelfMaintainingVisible', N'0', N'Carpe Diem NG Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (599, N'CarpeDiemNG::DummyUser', N'Intapp Walls', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (600, N'NetDocuments::MaxLookupTableUpdatesPerRequest', N'1000', NULL, N'NetDocuments', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (601, N'HostedWorksite::IsActive', N'0', NULL, N'HostedWorksite', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (602, N'HostedWorksite::LibraryXML', N'', NULL, N'HostedWorksite', N'XML', N'{"schema":"HostedWorksiteLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (603, N'HostedWorksite::ServerURL', N'', NULL, N'HostedWorksite', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (604, N'HostedWorksite::Username', N'', NULL, N'HostedWorksite', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (605, N'HostedWorksite::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'HostedWorksite', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (606, N'HostedWorksite::AuditEmails', N'', NULL, N'HostedWorksite', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (607, N'HostedWorksite::SecureWorkspacesAndFolders', N'1', NULL, N'HostedWorksite', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (608, N'HostedWorksite::SecureFoundationalPolicies', N'0', NULL, N'HostedWorksite', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (609, N'HostedWorksite::ContractorGrantAccessRight', N'3', NULL, N'HostedWorksite', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (610, N'HostedWorksite::FoundationalGrantAccessRight', N'3', NULL, N'HostedWorksite', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (611, N'HostedWorksite::GrantAccessRight', N'3', NULL, N'HostedWorksite', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (612, N'HostedWorksite::ContractorGroupsOnPrivateObjects', NULL, NULL, N'HostedWorksite', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (613, N'HostedWorksite::DisableInclusionaryType', N'Standard', NULL, N'HostedWorksite', N'Select', N'{"values":["Standard", "Preserve"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (614, N'HostedWorksite::PermissionsXML', N' + + READ + 1 + 1 + + + READWRITE + 2 + 2 + + + FULLACCESS + 3 + 3 + +', NULL, N'HostedWorksite', N'XML', N'{"schema":"HostedWorksitePermissionsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (615, N'IsHostedWorksiteVisible', N'0', N'Hosted Worksite', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (616, N'Interwoven::ContractorGroupsOnPrivateObjects', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (617, N'HostedWorksite::QueueJobTimeout', N'3600', NULL, N'HostedWorksite', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (618, N'HostedWorksite::PowerUserGroupsXML', N'', NULL, N'HostedWorksite', N'XML', N'{"schema":"HostedWorksitePowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (619, N'DTEAxiom::SecureFoundationalPolicies', N'0', NULL, N'DTEAxiom', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (620, N'DTEAxiom::FoundationalGroupContainerIDPrefix', N'ZZCB_', NULL, N'DTEAxiom', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (621, N'DTEAxiom::FoundationalGroupContainerNamePrefix', N'IntApp Foundational Group Container for', NULL, N'DTEAxiom', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (622, N'DTEAxiom::RestrictedMessage', N'You are unable to release time due to a Foundational Wall.', NULL, N'DTEAxiom', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (623, N'GenericInsidersSelfMaintaining::IsActive', N'0', NULL, N'GenericInsidersSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (624, N'GenericInsidersSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'GenericInsidersSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (625, N'GenericInsidersSelfMaintaining::LibraryXML', N'', NULL, N'GenericInsidersSelfMaintaining', N'XML', N'{"schema":"GenericInsidersSelfMaintainingLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (626, N'IsGenericInsidersSelfMaintainingVisible', N'0', N'Generic Insiders Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (627, N'DTEAxiom::FoundationalUseRestricted', N'1', NULL, N'DTEAxiom', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (628, N'AllowedFileExtensions', N' + doc + docx + drf + eml + gif + jpeg + jpg + msg + nrl + pdf + png + ppt + pptx + rtf + tiff + txt + xls + xlsx +', NULL, N'General', N'XML', N'{"schema":"AllowedFileExtensions.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (629, N'PermanentInsidersHeaderText', N'Permanent Insiders List Generated in Compliance with the Market Abuse Regulation', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (630, N'PermanentInsidersHeaderFieldsXml', N' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +', NULL, N'Insiders', N'XML', N'{"schema":"InsidersHeaderFieldsXML.xsd"}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (631, N'PermanentInsidersDefaultAddReason', N'User added to permanent access role.', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (632, N'PermanentInsidersDefaultRemoveReason', N'User removed from permanent access role.', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (633, N'InsidersReportFieldsXml', N' + + + + + + + + + Ascending + +', NULL, N'Insiders', N'XML', N'{"schema":"InsidersReportFieldsXml.xsd"}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (634, N'NetDocuments::PowerUsersAndGroupsXML', N'', NULL, N'NetDocuments', N'XML', N'{"schema":"NetDocumentsPowerUsersAndGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (635, N'NetDocuments::HideGroups', N'0', NULL, N'NetDocuments', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (636, N'NetDocuments::AdminEmailOption', N'Email on failure', NULL, N'NetDocuments', N'Select', N'{"values":["Always email", "Do not email", "Email on failure"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (637, N'NetDocuments::IncrementalRepairCronExpression', N'0 0/5 * * * ?', NULL, N'NetDocuments', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (638, N'EnabledMTHistoryConflictValidation', N'0', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +SET IDENTITY_INSERT [dbo].[Config] OFF +SET IDENTITY_INSERT [dbo].[Entities] ON + +INSERT [dbo].[Entities] ([EntityId], [EntityTypeId], [EntityRemoteSystemId], [EntityDescription], [ParentTypeId], [ParentRemoteSystemId], [ParentDescription], [EntityCustomData], [RecordsSystemId], [FinancialSystemId], [TimeEntrySystemId], [WindowsNetworkLogon], [CustomField1], [CustomField2], [CustomField3], [CustomField4], [CustomField5], [CustomField6], [CustomField7], [CustomField8], [CustomField9], [CustomField10], [IsEnabledForSearch], [Modified], [Created], [MatterOpenStatus], [MatterConfidentialityStatus], [MatterTeamEntityId], [CustomField11], [CustomField12], [CustomField13], [CustomField14], [CustomField15], [CustomField16], [CustomField17], [CustomField18], [CustomField19], [CustomField20], [CustomField21], [CustomField22], [CustomField23], [CustomField24], [CustomField25], [CustomField26], [CustomField27], [CustomField28], [CustomField29], [CustomField30], [EntityDisplayId], [CrmSystemId], [TimeBuilderSystemId], [FileshareRemoteSystemId], [OpenSystemId], [NotificationRoleId]) VALUES (1, 10, N'ALL', N'All clients and matters', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1) +INSERT [dbo].[Entities] ([EntityId], [EntityTypeId], [EntityRemoteSystemId], [EntityDescription], [ParentTypeId], [ParentRemoteSystemId], [ParentDescription], [EntityCustomData], [RecordsSystemId], [FinancialSystemId], [TimeEntrySystemId], [WindowsNetworkLogon], [CustomField1], [CustomField2], [CustomField3], [CustomField4], [CustomField5], [CustomField6], [CustomField7], [CustomField8], [CustomField9], [CustomField10], [IsEnabledForSearch], [Modified], [Created], [MatterOpenStatus], [MatterConfidentialityStatus], [MatterTeamEntityId], [CustomField11], [CustomField12], [CustomField13], [CustomField14], [CustomField15], [CustomField16], [CustomField17], [CustomField18], [CustomField19], [CustomField20], [CustomField21], [CustomField22], [CustomField23], [CustomField24], [CustomField25], [CustomField26], [CustomField27], [CustomField28], [CustomField29], [CustomField30], [EntityDisplayId], [CrmSystemId], [TimeBuilderSystemId], [FileshareRemoteSystemId], [OpenSystemId], [NotificationRoleId]) VALUES (2, 11, N'ALL_USERS', N'All users group', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1) +SET IDENTITY_INSERT [dbo].[Entities] OFF +SET IDENTITY_INSERT [dbo].[EntityTypes] ON + +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (1, N'User', N'Users', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (2, N'Group', N'Groups', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (3, N'Client', N'Clients', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (4, N'Matter', N'Matters', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (6, N'Matter Team', N'Matter Teams', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (7, N'Dynamic Client Group', N'Dynamic Client Groups', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (8, N'Dynamic Matter Group', N'Dynamic Matter Groups', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (9, N'Dynamic User Group', N'Dynamic User Groups', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (10, N'All Clients', N'All Clients', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (11, N'All Users', N'All Users', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (12, N'External User', N'External Users', 1) +SET IDENTITY_INSERT [dbo].[EntityTypes] OFF +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (1, N'Client ID', N'string', N'Client ID', N'Entities', N'EntityRemoteSystemId', 3, 0, NULL, 1, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (2, N'Matter ID', N'string', N'Matter ID', N'Entities', N'EntityRemoteSystemId', 4, 0, NULL, 1, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (3, N'Client Name', N'string', N'Client Name', N'Entities', N'EntityDescription', 3, 0, NULL, 1, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (4, N'Matter Name', N'string', N'Matter Name', N'Entities', N'EntityDescription', 4, 0, NULL, 1, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (5, N'List Open Date', N'date', N'List Opening Date', N'InsidersReports', N'Created', NULL, 0, NULL, 1, N'UTC:yyyy-MM-dd HH:mm', 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (6, N'List Update Date', N'date', N'List Last Updated', N'InsidersReports', N'Modified', NULL, 0, NULL, 1, N'UTC:yyyy-MM-dd HH:mm', 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (8, N'User Name', N'string', N'User Name', N'Entities', N'EntityDescription', 1, 1, NULL, 0, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (9, N'Access Granted', N'date', N'Date Access Granted', N'AccessHistory', N'DateGranted', NULL, 2, NULL, 0, N'UTC:yyyy-MM-dd HH:mm', 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (10, N'Access Revoked', N'date', N'Date Access Revoked', N'AccessHistory', N'DateRevoked', NULL, 3, NULL, 0, N'UTC:yyyy-MM-dd HH:mm', 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (11, N'Access Reason', N'string', N'Reason for Access', N'AccessHistory', N'AccessReason', NULL, 4, NULL, 0, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (12, N'Revoke Reason', N'string', N'Reason for Revoking Access', N'AccessHistory', N'RemovalReason', NULL, 4, N'User has access', 0, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (13, N'List Creation Date', N'date', N'Date and time (creation of the insider list)', N'InsidersReports', N'Created', NULL, 0, NULL, 1, N'UTC:yyyy-MM-dd HH:mm', 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (14, N'List Update Date', N'date', N'Date and time (last update)', N'InsidersReports', N'Modified', NULL, 0, NULL, 1, N'UTC:yyyy-MM-dd HH:mm', 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (15, N'User Name', N'string', N'User Name', N'Entities', N'EntityDescription', 1, 1, NULL, 0, NULL, 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (16, N'Access Granted', N'date', N'Date Access Granted', N'PermanentInsidersAccessHistory', N'DateGranted', NULL, 2, NULL, 0, N'UTC:yyyy-MM-dd HH:mm', 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (17, N'Access Revoked', N'date', N'Date Access Revoked', N'PermanentInsidersAccessHistory', N'DateRevoked', NULL, 3, NULL, 0, N'UTC:yyyy-MM-dd HH:mm', 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (18, N'Access Reason', N'string', N'Reason for Access', N'PermanentInsidersAccessHistory', N'AccessReason', NULL, 4, NULL, 0, NULL, 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (19, N'Revoke Reason', N'string', N'Reason for Revoking Access', N'PermanentInsidersAccessHistory', N'RemovalReason', NULL, 5, N'User has access', 0, NULL, 1) +SET IDENTITY_INSERT [dbo].[InsidersReports] ON + +INSERT [dbo].[InsidersReports] ([InsidersReportsId], [MatterEntityID], [Created], [Modified], [LastRun], [ReportXML]) VALUES (1, NULL, CAST(N'2018-02-03T17:10:07.030' AS DateTime), CAST(N'2018-02-03T17:10:07.030' AS DateTime), CAST(N'2018-02-03T17:10:07.030' AS DateTime), N'Ascending') +SET IDENTITY_INSERT [dbo].[InsidersReports] OFF +SET IDENTITY_INSERT [dbo].[MatterTeamHistoryActivityTypes] ON + +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (0, N'Migration') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (1, N'Addition') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (2, N'Removal') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (3, N'Promotion') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (4, N'Demotion') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (5, N'Update') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (6, N'Addition by Self-Maintaining') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (7, N'Addition by Relationship') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (8, N'Auto Subscription') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (9, N'Subscription') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (10, N'Expiration') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (11, N'Activation') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (12, N'Deactivation') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (13, N'Matter Team Deletion') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (14, N'Removal by Relationship') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (15, N'Manual Activation') +SET IDENTITY_INSERT [dbo].[MatterTeamHistoryActivityTypes] OFF +SET IDENTITY_INSERT [dbo].[MatterTeamRole] ON + +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (1, N'Matter Manager', 1, 0, 1, 0, 0, 1, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (2, N'Matter Partner', 1, 0, 1, 0, 0, 1, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (3, N'Billing Lawyer', 1, 0, 1, 0, 0, 1, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (4, N'Delegated Administrator', 1, 1, 1, 0, 0, 1, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (5, N'Partner', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (6, N'Lawyer', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (7, N'Secretary', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (8, N'Legal Services', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (9, N'IT', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (10, N'Firm Admin', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (11, N'Other', 0, 0, 1, 0, 0, 0, 0) +SET IDENTITY_INSERT [dbo].[MatterTeamRole] OFF +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 1, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 2, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 3, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 4, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 5, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 6, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 1, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 2, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 3, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 4, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 5, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 6, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 1, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 2, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 3, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 4, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 5, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 6, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 1, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 2, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 3, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 4, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 5, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 6, 1, 1) +SET IDENTITY_INSERT [dbo].[Notifications] ON + +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (1, 0, N'[AllSAllUnacknowledgedUsers]', N'

The firm represents [S1ClientMatterNames]. Due to the sensitive nature of the work being performed, the client has requested only named individuals be allowed access to the following:

+

 

+

[AllSideInformation]

+

 

+

Effective immediately:

+

1.Only the team members listed above will be allowed to access any files, databases, etc relating to the above clients/matters. 2.The team members listed above will not share with anyone not listed above any confidential information that was received in the course of their work.

+

 

+

[AcknowledgmentRequest] This screening arrangement will remain effective until further notice; we appreciate your compliance with this memo. Should you have any questions, please contact [ScreeningLawyerNames].

+

 

+

 

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Confidentiality (Outside Counsel Guidelines)', N'Confidentiality Memo: [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (2, 0, N'[AllSAllUsers]', N'

The firm represents [S1ClientMatterNames]. This representation is highly confidential and should not be disclosed or discussed with any other person except as set forth in this memorandum.

+

 

+

We may have obtained or may obtain, through our representation of the above, certain confidential information which, due to heightened sensitivity, should be kept insulated from other lawyers within the firm. As a result, we have internally decided to erect an information barrier between the following team members and the rest of the firm regarding the representation of the below.

+

 

+

[AllSideInformation]

+

 

+

No lawyer, legal assistant or staff member working on the above engagement shall discuss with any lawyer, legal assistant or staff member not working on the above engagement any information relating to his or her respective client engagement. In addition, all files and documents maintained by each member of the team will be kept in a secure fashion and will not be made available to any lawyer not listed above.

+

 

+

Any addition of personnel to any of the teams will be reflected immediately by an appropriate amendment to this memorandum.

+

 

+

Your strict and rigorous adherence to the spirit as well as the letter of each of these procedures and requirements is of the utmost importance both to the interests of our clients and to the integrity and reputation of our firm.

+

 

+

Any questions about these procedures should be referred to [ScreeningLawyerNames].

', 0, 1, NULL, 0, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Confidentiality (Partner Requested; Clients & Matters)', N'Sensitive Matter - [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (3, 0, N'[AllSAllUsers]', N'

The Firm has been engaged to provide legal advice and counsel to [S1ClientMatterNames] ("Client") in connection with various matters. Due to the sensitivity of the work involved, we are implementing a barrier between those persons working for the Client and those persons not working for the Client. The firm personnel who are working on the Client''s matters consist of [S1UserNames] (“Team”).

+

 

+

The Firm has implemented the following screening procedures:

+
    +
  1. All personnel not listed above will be screened in the firm''s client database from the Client.
  2. +
  3. The Team will not discuss or share information concerning the Client with any lawyers or staff outside the Team.
  4. +
  5. Personnel not listed above shall not work on the Client''s matters.
  6. +
  7. [ScreeningLawyerNames] will ensure that additional persons asked to work on the above matters are not subject to other exclusionary screens and are provided with a copy of this memorandum.
  8. +
  9. All Client files will be maintained exclusively in the possession of persons designated by [ScreeningLawyerNames].
  10. +
  11. A copy of this memorandum will be placed in the Firm''s files pertaining to the Client.
  12. +
  13. Any person who knowingly violates the terms of this screen risks sanctions, including possible termination, for violation of these restrictions.
  14. +
+

 Should you have any questions relating to this memorandum, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 0, N'On-Demand', NULL, NULL, NULL, N'Template', NULL, NULL, NULL, N'WB Template - Confidentiality (Partner Requested; Clients)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (4, 0, N'{put your distribution list for entire firm here}', N'

All,

+

 

+

On [EffectiveDate], [S1UserNames] will be joining us as a lateral hire from {put the firm name here}. While there, [S1UserNames] participated in matters that were sometimes adverse to [S2ClientMatterNames]. Therefore, to minimize the appearance of risk, we will be screening [S1UserNames] from any matters that involve [S2ClientMatterNames].

+

 

+

Effective immediately:

+

 

+

[AllSideInformation]

+

 

+
    +
  1. No one at the firm will have any discussion with [S1UserNames] about any matter relating to the above client/matter(s). This will remain in effect even after the representation on this client/matter(s) has been closed to avoid any future conflict regarding representation of clients/matters similar to the above.
  2. +
  3. [S1UserNames] will be prohibited from accessing any information involving [S2ClientMatterNames].
  4. +
  5. No documents relating to [S2ClientMatterNames] will be circulated to [S1UserNames].
  6. +
+

 

+

This screening arrangement will remain effective until further notice; we appreciate your compliance with this memo. Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Lateral (to Firm)', N'Lateral hire screening memo', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (5, 0, N'[S1AllUsers]', N'

[S1UserNames],

+

 

+

The firm is advising on [S2ClientMatterNames] (“Restricted Matter”). You have indicated that you have acted adverse to this Restricted Matter or a related matter(s) at your previous firm and may therefore have obtained confidential information which might reasonably be expected to be material to the firm’s client(s) in the Restricted Matter. Accordingly, the firm has implemented an information barrier which prohibits you from working on the Restricted Matter or discussing your prior work in relation to that matter.

+

 

+

Please click the acknowledgement below by which you confirm that you:

+

 

+
    +
  1. undertake that you have not brought any documents to the firm which relate to the Restricted Matter and will not discuss your prior work in relation to the Restricted Matter with anyone at the firm;
  2. +
  3. understand that if you are asked to work on the Restricted Matter, you will decline immediately and inform a risk and compliance lawyer;
  4. +
  5. understand that you will be denied access to the electronic file for the Restricted Matter and undertake that you will not seek to obtain information about the Restricted matter, and
  6. +
  7. have not previously had any discussions or exchanged documents that would result in a breach of this information barrier.
  8. +
+

 

+

[AcknowledgmentRequest] There must be strict adherence to these procedures. Any breach of this information barrier may result in disciplinary action. Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Lateral (to Lateral)', N'Lateral hire screening memo', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (6, 0, N'[AllSAllUsers]', N'

All,
 

+

Notice is being given of a potential conflict arising from the firm’s representation of [S1ClientMatterNames] and [S2ClientMatterNames]. We have received waivers from both clients, and our continued representation of both is contingent on our establishing a screen between the teams working on either client. To ensure that information is not inadvertently shared between the teams, effective immediately:

+

 

+

[AllSideInformation]

+
    +
  1. No one working on matters relating to one of the above named clients will share with any one working on the other named client any confidential information that was received in the course of their work.
  2. +
  3. Members of each team will be prohibited from accessing any files, databases, etc relating to the opposite team.
  4. +
  5. No member of either team can become a member of the opposite team. If you are currently working on both teams, notify your manager and [ScreeningLawyerNames] immediately so we can assign you appropriately.
  6. +
  7. Support staff may not be shared across the two teams.
  8. +
+

 

+

This screening arrangement will remain effective until further notice; we appreciate your compliance with this memo. [AcknowledgmentRequest] Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Information Barrier (Client Waivers)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (7, 0, N'[AllSAllUsers]', N'

All,

+

 

+

The firm represents [S1ClientMatterNames]. In addition, the Firm is representing [S2ClientMatterNames]. We may have obtained or may obtain certain confidential information from one team that should be kept insulated from the other. As a result, we have internally decided to erect an “ethical wall” between the two teams. To ensure that information is not inadvertently shared between the teams, effective immediately:

+

 

+

[AllSideInformation]

+

 

+

These representations are highly confidential and should not be disclosed or discussed with any other person except as set forth in this memorandum. No lawyer, legal assistant or staff member working on one side shall discuss with any lawyer, legal assistant or staff member working on the other side any information relating to his or her respective client or matter engagement. In addition, all files and documents maintained by each member of the respective teams will be kept in a secure fashion and will not be made available to any member of the other client team.

+

 

+

Any addition of personnel to any of the teams will be reflected immediately by an appropriate amendment to this memorandum.

+

 

+

Your strict and rigorous adherence to the spirit as well as the letter of each of these procedures and requirements is of the utmost importance both to the interests of our clients and to the integrity and reputation of our firm.

+

 

+

Any questions about these procedures should be referred to [ScreeningLawyerNames].

+

 

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Information Barrier (2 Client/Matter Teams)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (8, 0, N'[AllSAllUsers]', N'

The firm has been engaged to provide legal advice and counsel to [S1ClientMatterNames] in connection with various matters. The firm also represents [S2ClientMatterNames] in multiple matters.

+

 

+

While there is no conflict, out of an abundance of caution, we are implementing a wall between those persons working for [S1ClientMatterNames] and [S2ClientMatterNames]. The firm personnel are as follows:

+

 

+

[AllSideInformation]

+

 

+

The firm has implemented the following screening procedures:

+
    +
  1. The [S1ClientMatterNames] team members will be screened in the firm''s client database from all [S2ClientMatterNames] matters. The [S2ClientMatterNames] team members will be screened in the firm''s client database from all [S1ClientMatterNames] matters.
  2. +
  3. The [S1ClientMatterNames] team members will not discuss or share information concerning [S1ClientMatterNames] with the [S2ClientMatterNames] team. The [S2ClientMatterNames] team members will not discuss or share information concerning [S2ClientMatterNames] with the [S1ClientMatterNames] team members.
  4. +
  5. The [S1ClientMatterNames] team members shall not work on any [S2ClientMatterNames] matters. The [S2ClientMatterNames] team members shall not work on any [S1ClientMatterNames] matters.
  6. +
  7. All [S1ClientMatterNames] and [S2ClientMatterNames] files will be maintained in the possession of the appropriate team members.
  8. +
  9. A copy of this memorandum will be placed in the firm''s files pertaining to [S1ClientMatterNames] and [S2ClientMatterNames].
  10. +
  11. Any person who knowingly violates the terms of this screen risks sanctions, including possible termination, for violation of these restrictions.
  12. +
+

 

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Information Barrier (2 Client Teams)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (9, 0, N'[S1AllUsers]', N'

{This memo is meant to be distributed to one side. Make a copy and edit the memo accordingly for each of the other teams.}

+

All,

+

 

+

The firm has been engaged to provide legal advice and counsel on [S1ClientMatterNames] ("Matter"). {Insert explanation of why this matter team needs to be walled from the other matter teams.} Therefore, out of an abundance of caution, we are implementing walls between you and the teams working on the other matters, [S2ClientMatterNames] and [S3ClientMatterNames] {insert additional sides as necessary}(“Other Matters"). The firm personnel are as follows:

+

 

+

[AllSideInformation]

+

 

+

Matter team members shall comply with the following:

+
    +
  1. No documents or information (including but not limited to physical or electronic documents, email or other correspondence) concerning the Matter may be circulated, shown to, or discussed with anyone other than members of the matter team, their secretaries, and risk and compliance lawyers.
  2. +
  3. Any physical files and documents relating to the Matter should be kept within the offices of team members or in secure cabinets allocated to them. When no longer required for current use, physical files and documents should be placed in storage with access restricted to the team members and risk and compliance lawyers. Team members and secretaries must handle all work, filing and other information relating to the Matter and such information should not be left out in public areas or desks when not in use.
  4. +
  5. All electronic documents (whenever created) relating to the Matter must be profiled with the appropriate matter number and saved to the correct matter workspace in the document management system to ensure that these documents are correctly restricted to the correct matter team, their secretaries, and risk and compliance lawyers.
  6. +
  7. The matter team includes secretaries who carry out work on the Matter. Secretaries in the team may not work on the Other Matters, even as emergency cover, save with the advance consent of a risk and compliance lawyer.
  8. +
  9. Each Matter team member will ensure that his or her secretary is aware of the obligations imposed by the terms of this memorandum. By confirming compliance with this memorandum, each team member also expressly confirms there have been no prior communications of any kind which, had they taken place after the date of this memorandum, would have constituted a breach of this information barrier.
  10. +
  11. All members of the Matter team confirm that they do not have material confidential information regarding the Other Matters and undertake not to seek to obtain any information about the Other Matters.
  12. +
+

 

+

[AcknowledgmentRequest] If anyone at the firm violates the terms of this information barrier he or she will be subject to disciplinary action which may include termination of his or her employment. Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Information Barrier (Multi-sided Matter Teams)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (10, 0, N'{insert firm-wide email here}', N'

All,

+

 

+

[S1UserNames] has recently joined the firm as a contract lawyer. [S1UserNames] will be working on [S1ClientMatterNames] and will not be allowed access to any confidential information for any other clients and matters. Effective immediately:

+

 

+

[AllSideInformation]

+

 

+

No one working on matters other than the ones listed above may share with [S1UserNames] any confidential information that was received in the course of their work.

+

 

+

This screening arrangement will remain effective until further notice; we appreciate your compliance with this memo. Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 0, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Contractor', N'Screening procedures for Contractor', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (11, 0, N'[AllSAllUsers]', N'

A claim was filed on [EffectiveDate] against the firm arising out of our representing [S1ClientMatterNames]. We are under a legal obligation to preserve all information potentially relevant to the issues raised in the claim. By this memorandum, the individuals listed below must immediately preserve and protect such information. This information may currently be stored on computer systems as electronic files, emails, or otherwise stored as hard copies or in some other tangible form. Effective immediately, the data and custodians associated with the below client/matter are subject to this legal hold:

+

 

+

[AllSideInformation]

+

 

+

The obligations under this legal hold are continuing and apply equally to information created after, as well as before, this memorandum was delivered. In addition:

+

 

+
    +
  • The aforementioned custodians are instructed to identify places where potentially relevant electronic and paper documents, folders, and other information may be stored and make appropriate arrangement for its preservation.
  • +
  • The aforementioned custodians are directed to suspend practices regarding the retention and/or destruction of data pertaining to the client/matter listed above.
  • +
  • The IT department is directed to immediately disable the deletion of “archived emails” for the listed individuals.
  • +
+

 

+

Keep in mind that as your emails are subject to a legal hold, they may be subject to disclosure to other parties and the public. Please exercise caution and discretion in your communications. Please contact [ScreeningLawyerNames] if you have any questions or believe that anybody else should be added to the above list.

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer],{add IT team here}', NULL, NULL, N'WB Template - Internal Legal Hold', N'Legal Hold Memo: [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (12, 0, N'[AllSAllUsers]', N'

[EventInformation]. As this is pertaining to a confidential matter(s), please inform [ScreeningLawyerNames] or the Risk team immediately if this is incorrect. The revised policy membership is as follows:

+

 

+

[AllSideInformation]

', 0, 1, NULL, 0, N'Event-Driven', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: New User Added to Confidentiality Policy', N'Alert - User added to [Name]', 1, 16, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (13, 0, N'[AllSAllUsers]', N'

[EventInformation]. If you believe this change was made in error, please contact [ScreeningLawyerNames] or the Risk team immediately. The revised policy membership is as follows:

+

 

+

[AllSideInformation]

', 0, 1, NULL, 0, N'Event-Driven', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: New User Added to Ethical Wall', N'Alert - User added to [Name]', 1, 16, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (14, 0, N'[AllSAllUsers]', N'

[EventInformation]. If you believe this change was made in error, please contact [ScreeningLawyerNames] or the Risk team immediately. The revised membership is as follows:

+

 

+

[AllSideInformation]

', 0, 1, NULL, 0, N'Event-Driven', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: User Removed from Policy', N'Alert - User removed from [Name]', 1, 32, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (15, 0, N'[AllSAllUnacknowledgedUsers]', N'

This is a reminder to acknowledge the [Name] memo that was sent out earlier. For your reference, below is the original memo:

+

 

+

{insert memo content here and include the acknowledgement request}

+

 

', 0, 1, NULL, 1, N'Scheduled', CAST(N'2012-11-30T00:00:00.000' AS DateTime), 7, N'D', N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: Reminder to Acknowledge', N'Action required - Sensitive Matter - [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (16, 0, N'[AllSAllUsers]', N'

This is a reminder that the [Name] memo circulated 6 months ago is still in effect. For your reference, below is the original memo:

+

 

+

{copy memo content here but do not include acknowledgement request}

', 0, 1, NULL, 0, N'Scheduled', CAST(N'2012-11-30T00:00:00.000' AS DateTime), 6, N'M', N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: Reminder Policy Still in Effect', N'Reminder that [Name] is still in effect', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (17, 0, N'[ScreeningLawyer]', N'

[ScreeningLawyerNames],

+

 

+

[EventInformation]. Information pertaining to:

+

[S1ClientMatterNames]

+

[S2ClientMatterNames]

+

will be publicly accessible, unless there is another policy in place with regards to this, within the Firm effective immediately. Please see policy description below:

+

 

+

[AllGeneralInformation]

+

[AllSideInformation]

+

 

+

Please let the Risk team know if you have any questions regarding any of the foregoing.

', 0, 1, NULL, 0, N'Event-Driven', NULL, NULL, NULL, N'Template', NULL, NULL, NULL, N'WB Template - Alert: Policy Disabled', N'Alert - [Name] has been disabled', 1, 12, 0, 0) +SET IDENTITY_INSERT [dbo].[Notifications] OFF +SET IDENTITY_INSERT [dbo].[PolicyCategories] ON + +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (1, N'Inclusionary', N'Confidentiality', 1) +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (2, N'Exclusionary', N'Ethical Wall', 1) +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (3, N'Contractor', N'Contractor', 1) +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (4, N'Legal Hold', N'Legal Hold', 2) +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (5, N'Foundational Policy', N'Foundational', 3) +SET IDENTITY_INSERT [dbo].[PolicyCategories] OFF +SET IDENTITY_INSERT [dbo].[PolicyCategoryGroups] ON + +INSERT [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId], [Name]) VALUES (1, N'Walls & Security') +INSERT [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId], [Name]) VALUES (2, N'Legal Holds') +INSERT [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId], [Name]) VALUES (3, N'Foundational Policies') +SET IDENTITY_INSERT [dbo].[PolicyCategoryGroups] OFF +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (1, N'Wall ID', 1, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (2, N'Wall Name', 1, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (3, N'Wall Type', 1, N'string', N'Type of wall (e.g. Inclusionary Ethical Wall)', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (5, N'Screening Lawyers', 1, N'string', N'Names of the screening lawyers or supervisors for the policy type', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (6, N'Notes', 1, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (7, N'Created By User Name', 1, N'string', N'User name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'UserName', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (8, N'Created By Name', 1, N'string', N'Full name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'Name', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (9, N'Created Date', 1, N'date', N'Date and time when the wall was created', N'Walls', N'Created', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (10, N'Modified Date', 1, N'date', N'Date and time when the wall was last modified', N'Walls', N'Modified', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (11, N'Enabled', 1, N'bool', N'Flag indicating whether the wall is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (12, N'Expiration Date', 1, N'date', N'Date and time when the wall is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (13, N'Wall Definition Data', 1, N'string', N'The complete list of all clients, matters, users, or groups appearing on the wall', N'WallSideEntities', NULL, 1, 0, 1, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (14, N'Client ID or Name', 1, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (15, N'Matter ID or Name', 1, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (16, N'User ID or Name', 1, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (17, N'Group ID or Name', 1, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (18, N'Client ID', 2, N'string', N'Client ID', N'Walls', N'ClientId', 1, 1, 1, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (19, N'Wall ID', 2, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (20, N'Wall Name', 2, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (21, N'Wall Type', 2, N'string', N'Type of wall (e.g. Inclusionary Ethical Wall)', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (23, N'Screening Lawyers', 2, N'string', N'Names of the screening lawyers or supervisors for the policy type', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (24, N'Notes', 2, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (25, N'Created By User Name', 2, N'string', N'User name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'UserName', 1, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (26, N'Created By Name', 2, N'string', N'Full name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'Name', 1, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (27, N'Created Date', 2, N'date', N'Date and time when the wall was created', N'Walls', N'Created', 1, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (28, N'Modified Date', 2, N'date', N'Date and time when the wall was last modified', N'Walls', N'Modified', 1, 1, 0, 28) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (29, N'Enabled', 2, N'bool', N'Flag indicating whether the wall is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 29) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (30, N'Expiration Date', 2, N'date', N'Date and time when the wall is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 32) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (31, N'Wall Definition Data', 2, N'string', N'The complete list of all clients, matters, users, or groups appearing on the wall', N'WallSideEntities', NULL, 1, 0, 1, 33) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (33, N'Matter ID or Name', 2, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 35) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (34, N'User ID or Name', 2, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (35, N'Group ID or Name', 2, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 37) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (36, N'User ID', 3, N'string', N'User ID', N'Walls', N'UserId', 1, 1, 1, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (37, N'Wall ID', 3, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 37) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (38, N'Wall Name', 3, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 38) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (39, N'Wall Type', 3, N'string', N'Type of wall (e.g. Inclusionary Ethical Wall)', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 39) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (41, N'Screening Lawyers', 3, N'string', N'Names of the screening lawyers or supervisors for the policy type', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 41) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (42, N'Notes', 3, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 42) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (43, N'Created By User Name', 3, N'string', N'User name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'UserName', 1, 1, 0, 43) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (44, N'Created By Name', 3, N'string', N'Full name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'Name', 1, 1, 0, 44) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (45, N'Created Date', 3, N'date', N'Date and time when the wall was created', N'Walls', N'Created', 1, 1, 0, 45) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (46, N'Modified Date', 3, N'date', N'Date and time when the wall was last modified', N'Walls', N'Modified', 1, 1, 0, 46) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (47, N'Enabled', 3, N'bool', N'Flag indicating whether the wall is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 47) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (48, N'Expiration Date', 3, N'date', N'Date and time when the wall is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 50) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (49, N'Wall Definition Data', 3, N'string', N'The complete list of all clients, matters, users, or groups appearing on the wall', N'WallSideEntities', NULL, 1, 0, 1, 51) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (50, N'Client ID or Name', 3, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 52) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (51, N'Matter ID or Name', 3, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 53) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (53, N'Group ID or Name', 3, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 55) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (54, N'Wall ID', 13, N'int', N'ID of the wall in Intapp Walls', N'Log', N'WallId', 1, 1, 0, 54) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (55, N'Wall Name', 13, N'string', N'Name of the wall', N'Log', N'WallName', 1, 1, 1, 55) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (56, N'User Name', 13, N'string', N'User name of the Intapp Walls user who caused the log message', N'Log', N'UserLogin', 1, 1, 0, 57) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (57, N'Name', 13, N'string', N'Full name of the Intapp Walls user who caused the log message', N'Log', N'UserName', 1, 1, 1, 58) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (58, N'Log Message Type', 13, N'string', N'The type of log message, e.g. Maintenance', N'Log', N'LogMessageType', 1, 1, 1, 59) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (59, N'Log Message', 13, N'string', N'The log message', N'Log', N'LogMessage', 1, 1, 1, 60) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (60, N'Created Date', 13, N'date', N'Date and time when the message was logged', N'Log', N'Created', 1, 1, 1, 61) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (61, N'Wall ID', 5, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 61) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (62, N'Wall Name', 5, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 62) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (63, N'User ID', 5, N'string', N'User ID', N'Entities', N'EntityRemoteSystemId', 1, 1, 0, 63) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (64, N'User Name', 5, N'string', N'Full name of the user', N'Entities', N'EntityDescription', 1, 1, 1, 64) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (65, N'User Email Address', 5, N'string', N'Email address of the user', N'Entities', N'EntityCustomData', 1, 1, 0, 65) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (66, N'Acknowledged', 5, N'bool', N'Flag indicating whether or not the wall has been acknowledged by the user', N'Walls', N'isAcknowledged', 1, 1, 1, 66) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (67, N'Acknowledgment Requested Date', 5, N'date', N'The date the acknowledgment notice was sent to the user', N'Walls', N'DateOfNotice', 1, 1, 1, 67) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (68, N'Acknowledged Date', 5, N'date', N'The date the user acknowledged the wall', N'Walls', N'DateOfAcceptance', 1, 1, 1, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (69, N'Wall Enabled', 5, N'bool', N'Flag indicating whether or not the wall is enabled', N'Walls', N'isEnabled', 1, 1, 0, 69) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (70, N'Date Added', 3, N'date', N'Date and time when the user was added to the wall', N'Walls', N'DateAdded', 1, 1, 0, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (71, N'Added by Self-Maintaining', 3, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Walls', N'WasAddedBySelfMaintaining', 1, 1, 0, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (72, N'Client Name', 2, N'string', N'Client name', N'Walls', N'ClientDesc', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (73, N'User Name', 3, N'string', N'User name', N'Walls', N'UserDesc', 1, 1, 0, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (76, N'Matter Team ID or Name', 1, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (77, N'Matter Team ID or Name', 2, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 38) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (78, N'Matter Team ID or Name', 3, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 56) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (79, N'Dynamic Client Group ID or Name', 1, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (80, N'Dynamic Matter Group ID or Name', 1, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (81, N'Dynamic User Group ID or Name', 1, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (82, N'Dynamic Client Group ID or Name', 2, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 39) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (83, N'Dynamic Matter Group ID or Name', 2, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 40) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (84, N'Dynamic User Group ID or Name', 2, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 41) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (85, N'Dynamic Client Group ID or Name', 3, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 57) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (86, N'Dynamic Matter Group ID or Name', 3, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 58) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (87, N'Dynamic User Group ID or Name', 3, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 59) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (88, N'User ID', 7, N'string', N'User ID', N'Users', N'UserRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (89, N'User Name', 7, N'string', N'User name', N'Users', N'UserDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (90, N'Wall ID', 7, N'int', N'ID of the wall', N'Users', N'WallId', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (91, N'Wall Name', 7, N'string', N'Name of the wall', N'Users', N'WallName', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (92, N'Wall Modified Date', 7, N'date', N'Date and time when the wall was last modified', N'Users', N'WallModifiedDate', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (93, N'Wall Created Date', 7, N'date', N'Date and time when the wall was created', N'Users', N'WallCreatedDate', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (94, N'Wall Type', 7, N'string', N'Type of the wall (e.g. Inclusionary Ethical Wall)', N'Users', N'WallType', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (95, N'Most Recent Add to Wall Date', 7, N'date', N'The most recent wall side add date for the user', N'Users', N'MaxAddedDate', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (96, N'Added by Self-Maintaining', 7, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Users', N'WasAddedBySelfMaintaining', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (97, N'User ID', 8, N'string', N'User ID', N'Users', N'UserRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (98, N'User Name', 8, N'string', N'User name', N'Users', N'UserDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (99, N'Client ID', 8, N'string', N'Client ID', N'Clients', N'ClientRemoteId', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (100, N'Client Name', 8, N'string', N'Client name', N'Clients', N'ClientDescription', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (101, N'Matter ID', 8, N'string', N'Matter ID', N'Matters', N'MatterRemoteId', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (102, N'Matter Name', 8, N'string', N'Matter name', N'Matters', N'MatterDescription', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (103, N'Wall Allowing Access ID', 8, N'int', N'ID of the wall allowing access', N'AllowingWalls', N'WallId', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (104, N'Wall Allowing Access Name', 8, N'string', N'Name of the wall allowing access', N'AllowingWalls', N'Name', 1, 1, 1, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (105, N'Wall Allowing Access Modified Date', 8, N'date', N'Date and time when the wall allowing access was last modified', N'AllowingWalls', N'Modified', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (106, N'Wall Allowing Access Created Date', 8, N'date', N'Date and time when the wall allowing access was created', N'AllowingWalls', N'Created', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (107, N'Wall Allowing Access Type', 8, N'string', N'Type of the wall allowing access (e.g. Inclusionary Ethical Wall)', N'AllowingWallAccessTypes', N'WallAccessType', 1, 1, 0, 14) +GO +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (108, N'Wall Denying Access ID', 8, N'int', N'ID of the wall denying access', N'DenyingWalls', N'WallId', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (109, N'Wall Denying Access Name', 8, N'string', N'Name of the wall denying access', N'DenyingWalls', N'Name', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (110, N'Wall Denying Access Modified Date', 8, N'date', N'Date and time when the wall denying access was last modified', N'DenyingWalls', N'Modified', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (111, N'Wall Denying Access Created Date', 8, N'date', N'Date and time when the wall denying access was created', N'DenyingWalls', N'Created', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (112, N'Wall Denying Access Type', 8, N'string', N'Type of the wall denying access (e.g. Exclusionary Ethical Wall)', N'DenyingWallAccessTypes', N'WallAccessType', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (113, N'Most Recent Add to Wall Date', 8, N'date', N'The most recent wall side add date for the entity', N'Report', N'AddedDate', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (114, N'Added by Self-Maintaining', 8, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Report', N'WasAddedBySelfMaintaining', 1, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (115, N'User ID', 9, N'string', N'User ID', N'Users', N'UserRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (116, N'User Name', 9, N'string', N'User name', N'Users', N'UserDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (117, N'Client ID', 9, N'string', N'Client ID', N'Clients', N'ClientRemoteId', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (118, N'Client Name', 9, N'string', N'Client name', N'Clients', N'ClientDescription', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (119, N'Matter ID', 9, N'string', N'Matter ID', N'Matters', N'MatterRemoteId', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (120, N'Matter Name', 9, N'string', N'Matter name', N'Matters', N'MatterDescription', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (121, N'Wall Denying Access ID', 9, N'int', N'ID of the wall denying access', N'DenyingWalls', N'WallId', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (122, N'Wall Denying Access Name', 9, N'string', N'Name of the wall denying access', N'DenyingWalls', N'Name', 1, 1, 1, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (123, N'Wall Denying Access Modified Date', 9, N'date', N'Date and time when the wall denying access was last modified', N'DenyingWalls', N'Modified', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (124, N'Wall Denying Access Created Date', 9, N'date', N'Date and time when the wall denying access was created', N'DenyingWalls', N'Created', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (125, N'Wall Denying Access Type', 9, N'string', N'Type of the wall denying access (e.g. Exclusionary Ethical Wall)', N'DenyingWallAccessTypes', N'WallAccessType', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (126, N'Conflicting Wall ID', 9, N'int', N'ID of the conflicting wall', N'ConflictingWalls', N'WallId', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (127, N'Conflicting Wall Name', 9, N'string', N'Name of the conflicting wall', N'ConflictingWalls', N'Name', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (128, N'Conflicting Wall Modified Date', 9, N'date', N'Date and time when the conflicting wall was last modified', N'ConflictingWalls', N'Modified', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (129, N'Conflicting Wall Created Date', 9, N'date', N'Date and time when the conflicting wall was created', N'ConflictingWalls', N'Created', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (130, N'Conflicting Wall Type', 9, N'string', N'Type of the conflicting wall (e.g. Inclusionary Ethical Wall)', N'ConflictingWallAccessTypes', N'WallAccessType', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (131, N'Most Recent Add to Wall Date', 9, N'date', N'The most recent wall side add date for the entity', N'Report', N'AddedDate', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (132, N'Added by Self-Maintaining', 9, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Report', N'WasAddedBySelfMaintaining', 1, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (133, N'Client ID', 10, N'string', N'Client ID', N'Clients', N'ClientRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (134, N'Client Name', 10, N'string', N'Client name', N'Clients', N'ClientDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (135, N'Matter ID', 10, N'string', N'Matter ID', N'Matters', N'MatterRemoteId', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (136, N'Matter Name', 10, N'string', N'Matter name', N'Matters', N'MatterDescription', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (137, N'Allowed User ID', 10, N'string', N'Allowed User ID', N'AllowedUsers', N'UserRemoteId', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (138, N'Allowed User Name', 10, N'string', N'Allowed user name', N'AllowedUsers', N'UserDescription', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (139, N'Denied User ID', 10, N'string', N'Denied User ID', N'DeniedUsers', N'UserRemoteId', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (140, N'Denied User Name', 10, N'string', N'Denied user name', N'DeniedUsers', N'UserDescription', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (141, N'Shared Resource', 10, N'string', N'Shared resource name', N'Report', N'Resource', 1, 1, 1, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (142, N'Shared Resource Type', 10, N'string', N'Shared resource type', N'Report', N'ResourceType', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (143, N'Wall Allowing Access ID', 10, N'int', N'ID of the wall allowing access', N'AllowingWalls', N'WallId', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (144, N'Wall Allowing Access Name', 10, N'string', N'Name of the wall allowing access', N'AllowingWalls', N'Name', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (145, N'Wall Allowing Access Modified Date', 10, N'date', N'Date and time when the wall allowing access was last modified', N'AllowingWalls', N'Modified', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (146, N'Wall Allowing Access Created Date', 10, N'date', N'Date and time when the wall allowing access was created', N'AllowingWalls', N'Created', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (147, N'Wall Allowing Access Type', 10, N'string', N'Type of the wall allowing access (e.g. Inclusionary Ethical Wall)', N'AllowingWallAccessTypes', N'WallAccessType', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (148, N'Wall Denying Access ID', 10, N'int', N'ID of the wall denying access', N'DenyingWalls', N'WallId', 1, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (149, N'Wall Denying Access Name', 10, N'string', N'Name of the wall denying access', N'DenyingWalls', N'Name', 1, 1, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (150, N'Wall Denying Access Modified Date', 10, N'date', N'Date and time when the wall denying access was last modified', N'DenyingWalls', N'Modified', 1, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (151, N'Wall Denying Access Created Date', 10, N'date', N'Date and time when the wall denying access was created', N'DenyingWalls', N'Created', 1, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (152, N'Wall Denying Access Type', 10, N'string', N'Type of the wall denying access (e.g. Exclusionary Ethical Wall)', N'DenyingWallAccessTypes', N'WallAccessType', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (153, N'Most Recent Add to Wall Date', 10, N'date', N'The most recent wall side add date for the entity', N'Report', N'AddedDate', 1, 1, 1, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (154, N'Added by Self-Maintaining', 10, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Report', N'WasAddedBySelfMaintaining', 1, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (155, N'Client ID', 11, N'string', N'Client ID', N'Clients', N'ClientRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (156, N'Client Name', 11, N'string', N'Client name', N'Clients', N'ClientDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (157, N'Matter ID', 11, N'string', N'Matter ID', N'Matters', N'MatterRemoteId', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (158, N'Matter Name', 11, N'string', N'Matter name', N'Matters', N'MatterDescription', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (159, N'Denied User ID', 11, N'string', N'Denied user ID', N'DeniedUsers', N'UserRemoteId', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (160, N'Denied User Name', 11, N'string', N'Denied user name', N'DeniedUsers', N'UserDescription', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (161, N'Conflicting User ID', 11, N'string', N'Conflicting user ID', N'ConflictingUsers', N'UserRemoteId', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (162, N'Conflicting User Name', 11, N'string', N'Conflicting user name', N'ConflictingUsers', N'UserDescription', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (163, N'Shared Resource', 11, N'string', N'Shared resource name', N'Report', N'Resource', 1, 1, 1, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (164, N'Shared Resource Type', 11, N'string', N'Shared resource type', N'Report', N'ResourceType', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (165, N'Denied User Wall ID', 11, N'int', N'ID of the wall occupied by denied user', N'DenyingWalls', N'WallId', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (166, N'Denied User Wall Name', 11, N'string', N'Name of the wall occupied by denied user', N'DenyingWalls', N'Name', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (167, N'Denied User Wall Modified Date', 11, N'date', N'Date and time when the wall occupied by denied user was last modified', N'DenyingWalls', N'Modified', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (168, N'Denied User Wall Created Date', 11, N'date', N'Date and time when the wall occupied by denied user was created', N'DenyingWalls', N'Created', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (169, N'Denied User Wall Type', 11, N'string', N'Type of the wall occupied by denied user (e.g. Exclusionary Ethical Wall)', N'DenyingWallAccessTypes', N'WallAccessType', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (170, N'Conflicting User Wall ID', 11, N'int', N'ID of the wall occupied by conflicting user', N'ConflictingWalls', N'WallId', 1, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (171, N'Conflicting User Wall Name', 11, N'string', N'Name of the wall occupied by conflicting user', N'ConflictingWalls', N'Name', 1, 1, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (172, N'Conflicting User Wall Modified Date', 11, N'date', N'Date and time when the wall occupied by conflicting user was last modified', N'ConflictingWalls', N'Modified', 1, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (173, N'Conflicting User Wall Created Date', 11, N'date', N'Date and time when the wall occupied by conflicting user was created', N'ConflictingWalls', N'Created', 1, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (174, N'Conflicting User Wall Type', 11, N'string', N'Type of the wall occupied by conflicting user (e.g. Inclusionary Ethical Wall)', N'ConflictingWallAccessTypes', N'WallAccessType', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (175, N'Most Recent Add to Wall Date', 11, N'date', N'The most recent wall side add date for the entity', N'Report', N'AddedDate', 1, 1, 1, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (176, N'Added by Self-Maintaining', 11, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Report', N'WasAddedBySelfMaintaining', 1, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (177, N'Self Maintaining', 1, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (178, N'Self Maintaining', 2, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 42) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (179, N'Self Maintaining', 3, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 60) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (180, N'Self Maintaining', 5, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 71) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (181, N'Matter ID', 12, N'string', N'ID of the matter for the matter team', N'Matters', N'MatterRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (182, N'Matter Name', 12, N'string', N'Name of the matter for the matter team', N'Matters', N'MatterDescription', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (183, N'Status', 12, N'bool', N'The open/closed status of the matter', N'Matters', N'MatterOpenStatus', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (184, N'Confidentiality Status', 12, N'string', N'The confidentiality status of the matter', N'Matters', N'MatterConfidentialityStatus', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (185, N'Modified Date', 12, N'date', N'Date and time when the matter team was last modified', N'MatterTeams', N'MatterTeamModified', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (186, N'Created Date', 12, N'date', N'Date and time when the matter team was created', N'MatterTeams', N'MatterTeamCreated', 1, 1, 1, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (187, N'Self-Maintaining', 12, N'bool', N'Flag indicating whether the matter team is self-maintaining', N'MatterTeamFields', N'IsSelfMaintained', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (188, N'User Name', 12, N'string', N'The name of the user on the matter team', N'Users', N'UserDescription', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (189, N'User ID', 12, N'string', N'The ID of the user on the matter team', N'Users', N'UserRemoteId', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (190, N'Matter Role', 12, N'string', N'The matter role of the user on the matter team', N'MatterTeamUsers', N'RoleName', 1, 1, 1, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (191, N'Expiration Date', 12, N'date', N'Expiration date of the user on the matter team', N'MatterTeamUsers', N'ExpirationDate', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (192, N'Reason', 12, N'string', N'The reason the user is on the matter team', N'MatterTeamUsers', N'Reason', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (193, N'Active', 12, N'bool', N'Flag indicating whether the user is active or inactive on the matter team', N'MatterTeamUsers', N'Active', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (194, N'Matter ID', 14, N'string', N'ID of the matter for the matter team', N'Matters', N'MatterRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (195, N'Matter Name', 14, N'string', N'Name of the matter for the matter team', N'Matters', N'MatterDescription', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (196, N'Name', 14, N'string', N'Full name of the user who caused the log message', N'GroupEntityLog', N'User', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (197, N'Log Message Type', 14, N'string', N'The type of log message, e.g. Maintenance', N'GroupEntityLog', N'LogMessageType', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (198, N'Log Message', 14, N'string', N'The log message', N'GroupEntityLog', N'LogMessage', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (199, N'Created Date', 14, N'date', N'Date and time when the message was logged', N'GroupEntityLog', N'Created', 1, 1, 1, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (200, N'Effective Date', 1, N'date', N'Date and time when the wall is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (201, N'Effective Date', 2, N'date', N'Date and time when the wall is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 31) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (202, N'Effective Date', 3, N'date', N'Date and time when the wall is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 49) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (203, N'Modified By Name', 1, N'string', N'Full name of the Intapp Walls user who last modified the wall', N'ModifierUsers', N'Name', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (204, N'Modified By Name', 2, N'string', N'Full name of the Intapp Walls user who last modified the wall', N'ModifierUsers', N'Name', 1, 1, 0, 28) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (205, N'Modified By Name', 3, N'string', N'Full name of the Intapp Walls user who last modified the wall', N'ModifierUsers', N'Name', 1, 1, 0, 46) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (206, N'Matter ID', 15, N'string', N'Matter ID', N'Walls', N'MatterId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (207, N'Matter Name', 15, N'string', N'Matter name', N'Walls', N'MatterDescription', 1, 1, 0, 2) +GO +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (208, N'Client ID', 15, N'string', N'Client ID', N'Walls', N'ClientId', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (209, N'Client Name', 15, N'string', N'Client name', N'Walls', N'ClientDescription', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (210, N'Matter Open Status', 15, N'bool', N'The open/closed status of the matter', N'Walls', N'MatterOpenStatus', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (211, N'Matter Confidentiality', 15, N'string', N'The confidentiality status of the matter', N'Walls', N'MatterConfidentialityStatus', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (212, N'Wall ID', 15, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (213, N'Wall Name', 15, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (214, N'Wall Type', 15, N'string', N'Type of wall (e.g. Inclusionary Ethical Wall)', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (215, N'Screening Lawyers', 15, N'string', N'Names of the screening lawyers or supervisors for the policy type', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (216, N'Notes', 15, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (217, N'Created By User Name', 15, N'string', N'User name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'UserName', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (218, N'Created By Name', 15, N'string', N'Full name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'Name', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (219, N'Created Date', 15, N'date', N'Date and time when the wall was created', N'Walls', N'Created', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (220, N'Modified Date', 15, N'date', N'Date and time when the wall was last modified', N'Walls', N'Modified', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (221, N'Modified By Name', 15, N'string', N'Full name of the Intapp Walls user who last modified the wall', N'ModifierUsers', N'Name', 1, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (222, N'Enabled', 15, N'bool', N'Flag indicating whether the wall is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (223, N'Effective Date', 15, N'date', N'Date and time when the wall is set to active', N'Walls', N'EffectiveDate', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (224, N'Expiration Date', 15, N'date', N'Date and time when the wall is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (225, N'Wall Definition Data', 15, N'string', N'The complete list of all clients, matters, users, or groups appearing on the wall', N'WallSideEntities', NULL, 1, 0, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (226, N'Client ID or Name', 15, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (227, N'User ID or Name', 15, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (228, N'Group ID or Name', 15, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (229, N'Matter Team ID or Name', 15, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (230, N'Dynamic Client Group ID or Name', 15, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (231, N'Dynamic Matter Group ID or Name', 15, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (232, N'Dynamic User Group ID or Name', 15, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 28) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (233, N'Self Maintaining', 15, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 29) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (234, N'Legal Hold ID', 16, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (235, N'Legal Hold Name', 16, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (236, N'Legal Hold Type', 16, N'string', N'Type of legal hold', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (237, N'Hold Supervisors', 16, N'string', N'Names of the hold supervisors', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (238, N'Notes', 16, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (239, N'Created By User Name', 16, N'string', N'User name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'UserName', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (240, N'Created By Name', 16, N'string', N'Full name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'Name', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (241, N'Created Date', 16, N'date', N'Date and time when the legal hold was created', N'Walls', N'Created', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (242, N'Modified', 16, N'date', N'Date and time when the legal hold was last modified', N'Walls', N'Modified', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (243, N'Enabled', 16, N'bool', N'Flag indicating whether the legal hold is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (244, N'Effective Date', 16, N'date', N'Date and time when the legal hold is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (245, N'Expiration Date', 16, N'date', N'Date and time when the legal hold is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (246, N'Legal Hold Definition Data', 16, N'string', N'The complete list of all clients, matters, users, or groups appearing on the legal hold', N'WallSideEntities', NULL, 1, 0, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (247, N'Client ID or Name', 16, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (248, N'Matter ID or Name', 16, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (249, N'User ID or Name', 16, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (250, N'Group ID or Name', 16, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (251, N'Matter Team ID or Name', 16, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (252, N'Dynamic Client Group ID or Name', 16, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (253, N'Dynamic Matter Group ID or Name', 16, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (254, N'Dynamic User Group ID or Name', 16, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (255, N'Self Maintaining', 16, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (256, N'Client ID', 17, N'string', N'Client ID', N'Walls', N'ClientId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (257, N'Client Name', 17, N'string', N'Client name', N'Walls', N'ClientDesc', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (258, N'Legal Hold ID', 17, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (259, N'Legal Hold Name', 17, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (260, N'Legal Hold Type', 17, N'string', N'Type of legal hold', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (261, N'Hold Supervisors', 17, N'string', N'Names of the hold supervisors', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (262, N'Notes', 17, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (263, N'Created By User Name', 17, N'string', N'User name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'UserName', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (264, N'Created By Name', 17, N'string', N'Full name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'Name', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (265, N'Created Date', 17, N'date', N'Date and time when the legal hold was created', N'Walls', N'Created', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (266, N'Modified', 17, N'date', N'Date and time when the legal hold was last modified', N'Walls', N'Modified', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (267, N'Enabled', 17, N'bool', N'Flag indicating whether the legal hold is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (268, N'Effective Date', 17, N'date', N'Date and time when the legal hold is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (269, N'Expiration Date', 17, N'date', N'Date and time when the legal hold is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (270, N'Legal Hold Definition Data', 17, N'string', N'The complete list of all clients, matters, users, or groups appearing on the legal hold', N'WallSideEntities', NULL, 1, 0, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (271, N'Matter ID or Name', 17, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (272, N'User ID or Name', 17, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (273, N'Group ID or Name', 17, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (274, N'Matter Team ID or Name', 17, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (275, N'Dynamic Client Group ID or Name', 17, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (276, N'Dynamic Matter Group ID or Name', 17, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (277, N'Dynamic User Group ID or Name', 17, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (278, N'Self Maintaining', 17, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (279, N'User ID', 18, N'string', N'User ID', N'Walls', N'UserId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (280, N'Date Added', 18, N'date', N'Date and time when the user was added to the wall', N'Walls', N'DateAdded', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (281, N'Added by Self-Maintaining', 18, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Walls', N'WasAddedBySelfMaintaining', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (282, N'User Name', 18, N'string', N'User name', N'Walls', N'UserDesc', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (283, N'Legal Hold ID', 18, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (284, N'Legal Hold Name', 18, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (285, N'Legal Hold Type', 18, N'string', N'Type of legal hold', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (286, N'Hold Supervisors', 18, N'string', N'Names of the hold supervisors', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (287, N'Notes', 18, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (288, N'Created By User Name', 18, N'string', N'User name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'UserName', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (289, N'Created By Name', 18, N'string', N'Full name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'Name', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (290, N'Created Date', 18, N'date', N'Date and time when the legal hold was created', N'Walls', N'Created', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (291, N'Modified', 18, N'date', N'Date and time when the legal hold was last modified', N'Walls', N'Modified', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (292, N'Enabled', 18, N'bool', N'Flag indicating whether the legal hold is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (293, N'Effective Date', 18, N'date', N'Date and time when the legal hold is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (294, N'Expiration Date', 18, N'date', N'Date and time when the legal hold is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (295, N'Legal Hold Definition Data', 18, N'string', N'The complete list of all clients, matters, users, or groups appearing on the legal hold', N'WallSideEntities', NULL, 1, 0, 1, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (296, N'Matter ID or Name', 18, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (297, N'User ID or Name', 18, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (298, N'Group ID or Name', 18, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (299, N'Matter Team ID or Name', 18, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (300, N'Dynamic Client Group ID or Name', 18, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (301, N'Dynamic Matter Group ID or Name', 18, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (302, N'Dynamic User Group ID or Name', 18, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (303, N'Self Maintaining', 18, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (304, N'Matter ID', 19, N'string', N'Matter ID', N'Walls', N'MatterId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (305, N'Matter Name', 19, N'string', N'Matter name', N'Walls', N'MatterDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (306, N'Client ID', 19, N'string', N'Client ID', N'Walls', N'ClientId', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (307, N'Client Name', 19, N'string', N'Client name', N'Walls', N'ClientDescription', 1, 1, 0, 4) +GO +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (308, N'Matter Open Status', 19, N'bool', N'The open/closed status of the matter', N'Walls', N'MatterOpenStatus', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (309, N'Matter Confidentiality', 19, N'string', N'The confidentiality status of the matter', N'Walls', N'MatterConfidentialityStatus', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (310, N'Legal Hold ID', 19, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (311, N'Legal Hold Name', 19, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (312, N'Legal Hold Type', 19, N'string', N'Type of legal hold', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (313, N'Hold Supervisors', 19, N'string', N'Names of the hold supervisors', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (314, N'Notes', 19, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (315, N'Created By User Name', 19, N'string', N'User name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'UserName', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (316, N'Created By Name', 19, N'string', N'Full name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'Name', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (317, N'Created Date', 19, N'date', N'Date and time when the legal hold was created', N'Walls', N'Created', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (318, N'Modified Date', 19, N'date', N'Date and time when the legal hold was last modified', N'Walls', N'Modified', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (319, N'Modified User', 19, N'string', N'User name the legal hold was last modified by', N'ModifierUsers', N'Name', 1, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (320, N'Enabled', 19, N'bool', N'Flag indicating whether the legal hold is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (321, N'Effective Date', 19, N'date', N'Date and time when the legal hold is set to active', N'Walls', N'EffectiveDate', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (322, N'Expiration Date', 19, N'date', N'Date and time when the legal hold is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (323, N'Legal Hold Definition Data', 19, N'string', N'The complete list of all clients, matters, users, or groups appearing on the legal hold', N'WallSideEntities', NULL, 1, 0, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (324, N'Client ID or Name', 19, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (325, N'User ID or Name', 19, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (326, N'Group ID or Name', 19, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (327, N'Matter Team ID or Name', 19, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (328, N'Dynamic Client Group ID or Name', 19, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (329, N'Dynamic Matter Group ID or Name', 19, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (330, N'Dynamic User Group ID or Name', 19, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 28) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (331, N'Self Maintaining', 19, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 29) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (332, N'Legal Hold ID', 20, N'int', N'ID of the legal hold in Intapp Walls', N'Log', N'WallId', 1, 1, 0, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (333, N'Legal Hold Name', 20, N'string', N'Name of the legal hold', N'Log', N'WallName', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (334, N'User Name', 20, N'string', N'User name of the Intapp Walls user who caused the log message', N'Log', N'UserLogin', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (335, N'Name', 20, N'string', N'Full name of the Intapp Walls user who caused the log message', N'Log', N'UserName', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (336, N'Log Message Type', 20, N'string', N'The type of log message, e.g. Maintenance', N'Log', N'LogMessageType', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (337, N'Log Message', 20, N'string', N'The log message', N'Log', N'LogMessage', 1, 1, 1, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (338, N'Created Date', 20, N'date', N'Date and time when the message was logged', N'Log', N'Created', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (339, N'Legal Hold Enabled', 20, N'bool', N'Flag indicating whether or not the legal hold is enabled', N'Log', N'WallEnabled', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (340, N'Legal Hold ID', 21, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (341, N'Legal Hold Name', 21, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (342, N'User ID', 21, N'string', N'User ID', N'Entities', N'EntityRemoteSystemId', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (343, N'User Name', 21, N'string', N'Full name of the user', N'Entities', N'EntityDescription', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (344, N'User Email Address', 21, N'string', N'Email address of the user', N'Entities', N'EntityCustomData', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (345, N'Most Recent Add Date', 21, N'date', N'Date and time when the user was added to the legal hold', N'Walls', N'MostRecentAddDate', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (346, N'Acknowledged', 21, N'bool', N'Flag indicating whether or not the legal hold has been acknowledged by the user', N'Walls', N'IsAcknowledged', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (347, N'Acknowledgment Requested Date', 21, N'date', N'The date the acknowledgment notice was sent to the user', N'Walls', N'DateOfNotice', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (348, N'Acknowledged Date', 21, N'date', N'The date the user acknowledged the legal hold', N'Walls', N'DateOfAcceptance', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (349, N'Acknowledgment Sent', 21, N'bool', N'Flag indicating whether or not an acknowledgment notice has been sent to the user', N'Walls', N'IsAcknowledgmentSent', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (350, N'Notification Name', 21, N'string', N'The name of the notification sent to the user', N'Walls', N'NotificationName', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (351, N'Notification Send Date', 21, N'date', N'The date the notification was sent to the user', N'Walls', N'NotificationSentDate', 1, 1, 1, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (352, N'Most Recent Request', 21, N'bool', N'Flag indicating whether the notification contains the most recent acknowledgment notice sent to the user.', N'Walls', N'IsMostRecentRequest', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (353, N'Legal Hold Enabled', 21, N'bool', N'Flag indicating whether or not the legal hold is enabled', N'Walls', N'isEnabled', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (354, N'Self Maintaining', 21, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (355, N'Most Recent Add Date', 5, N'date', N'Date and time when the user was added to the policy', N'Walls', N'MostRecentAddDate', 1, 1, 0, 65) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (356, N'Acknowledgment Sent', 5, N'bool', N'Flag indicating whether or not an acknowledgment notice has been sent to the user', N'Walls', N'IsAcknowledgmentSent', 1, 1, 1, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (357, N'Notification Name', 5, N'string', N'The name of the notification sent to the user', N'Walls', N'NotificationName', 1, 1, 0, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (358, N'Notification Send Date', 5, N'date', N'The date the notification was sent to the user', N'Walls', N'NotificationSentDate', 1, 1, 1, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (360, N'Most Recent Request', 5, N'bool', N'Flag indicating whether the notification contains the most recent acknowledgment notice sent to the user.', N'Walls', N'IsMostRecentRequest', 1, 1, 0, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (361, N'Policy ID', 22, N'int', N'ID of the policy in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (362, N'Policy Name', 22, N'string', N'Name of the policy', N'Walls', N'Name', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (363, N'User ID', 22, N'string', N'User ID', N'Entities', N'EntityRemoteSystemId', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (364, N'User Name', 22, N'string', N'Full name of the user', N'Entities', N'EntityDescription', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (365, N'User Email Address', 22, N'string', N'Email address of the user', N'Entities', N'EntityCustomData', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (366, N'Most Recent Add Date', 22, N'date', N'Date and time when the user was added to the policy', N'Walls', N'MostRecentAddDate', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (367, N'Acknowledged', 22, N'bool', N'Flag indicating whether or not the policy has been acknowledged by the user', N'Walls', N'IsAcknowledged', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (368, N'Acknowledgment Requested Date', 22, N'date', N'The date the acknowledgment notice was sent to the user', N'Walls', N'DateOfNotice', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (369, N'Acknowledged Date', 22, N'date', N'The date the user acknowledged the legal hold', N'Walls', N'DateOfAcceptance', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (370, N'Acknowledgment Sent', 22, N'bool', N'Flag indicating whether or not an acknowledgment notice has been sent to the user', N'Walls', N'IsAcknowledgmentSent', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (371, N'Notification Name', 22, N'string', N'The name of the notification sent to the user', N'Walls', N'NotificationName', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (372, N'Notification Send Date', 22, N'date', N'The date the notification was sent to the user', N'Walls', N'NotificationSentDate', 1, 1, 1, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (373, N'Most Recent Request', 22, N'bool', N'Flag indicating whether the notification contains the most recent acknowledgment notice sent to the user.', N'Walls', N'IsMostRecentRequest', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (374, N'Policy Enabled', 22, N'bool', N'Flag indicating whether or not the policy is enabled', N'Walls', N'IsEnabled', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (375, N'Self Maintaining', 22, N'bool', N'Flag indicating whether the policy is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (376, N'Enabled', 13, N'bool', N'Flag indicating whether the wall is enabled', N'Log', N'WallEnabled', 1, 1, 0, 55) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (377, N'Wall Enabled', 7, N'bool', N'Flag indicating whether the wall is enabled', N'Users', N'WallIsEnabled', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (378, N'Content Range Start', 16, N'date', N'Date and time value used to limit content preservation to data created after this date.', N'Walls', N'SecurityStartDate', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (379, N'Content Range End', 16, N'date', N'Date and time value used to limit content preservation to data created before this date.', N'Walls', N'SecurityEndDate', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (380, N'Content Range Start', 17, N'date', N'Date and time value used to limit content preservation to data created after this date.', N'Walls', N'SecurityStartDate', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (381, N'Content Range End', 17, N'date', N'Date and time value used to limit content preservation to data created before this date.', N'Walls', N'SecurityEndDate', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (382, N'Content Range Start', 18, N'date', N'Date and time value used to limit content preservation to data created after this date.', N'Walls', N'SecurityStartDate', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (383, N'Content Range End', 18, N'date', N'Date and time value used to limit content preservation to data created before this date.', N'Walls', N'SecurityEndDate', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (384, N'Content Range Start', 19, N'date', N'Date and time value used to limit content preservation to data created after this date.', N'Walls', N'SecurityStartDate', 1, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (385, N'Content Range End', 19, N'date', N'Date and time value used to limit content preservation to data created before this date.', N'Walls', N'SecurityEndDate', 1, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (386, N'Type', 23, N'string', N'Type of message generated', N'ErrorLog', N'LogLevel', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (387, N'Log ID', 23, N'int', N'Unique Id of log message', N'ErrorLog', N'ErrorLogId', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (388, N'Service', 23, N'string', N'The Intapp Walls component that generated the log message', N'ErrorLog', N'ServiceType', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (389, N'Log Message', 23, N'string', N'The text of the system log entry', N'ErrorLog', N'LogMessage', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (390, N'Date', 23, N'date', N'Date and time when the log message was created', N'ErrorLog', N'Created', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (391, N'Log Exception', 23, N'string', N'Details about the action that generated an error or warning', N'ErrorLog', N'LogException', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (392, N'Notes', 5, N'string', N'Wall notes', N'Walls', N'Notes', 1, 1, 0, 72) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (393, N'Notes', 21, N'string', N'Legal hold notes', N'Walls', N'Notes', 1, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (394, N'Notes', 22, N'string', N'Policy notes', N'Walls', N'Notes', 1, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (395, N'Foundational Group Id', 1, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (396, N'Foundational Group Id', 2, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 43) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (397, N'Foundational Group Id', 3, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 61) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (398, N'Foundational Group Id', 5, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 73) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (400, N'Foundational Group Id', 10, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (401, N'Foundational Group Id', 11, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (402, N'Foundational Group Id', 13, N'string', N'ID of the security group created by the foundational wall', N'Log', N'FoundationalGroupId', 1, 1, 0, 62) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (403, N'Foundational Group Id', 15, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 30) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (404, N'Deleted', 1, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (405, N'Deleted', 2, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 30) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (406, N'Deleted', 3, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 48) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (407, N'Wall Deleted', 5, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 70) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (408, N'Deleted', 15, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (409, N'Deleted', 13, N'bool', N'Flag indicating whether the policy is deleted', N'Log', N'WallDeleted', 1, 1, 0, 56) +GO +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (410, N'Wall Deleted', 7, N'bool', N'Flag indicating whether the policy is deleted', N'Users', N'WallIsDeleted', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (411, N'Deleted', 16, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (412, N'Deleted', 17, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (413, N'Deleted', 18, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (414, N'Deleted', 19, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (415, N'Legal Hold Deleted', 21, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (416, N'Legal Hold Deleted', 20, N'bool', N'Flag indicating whether the legal hold is deleted', N'Log', N'WallDeleted', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (417, N'Policy Deleted', 22, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 15) +SET IDENTITY_INSERT [dbo].[Reports] ON + +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (10, 1, 1, N'Walls by Type', CAST(N'2018-02-03T17:06:22.130' AS DateTime), 0, N'11equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (11, 1, 2, N'Walls by Client', CAST(N'2018-02-03T17:06:22.160' AS DateTime), 0, N'29equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (12, 1, 3, N'Walls by User', CAST(N'2018-02-03T17:06:22.227' AS DateTime), 0, N'47equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (13, 1, 13, N'Prevented Breach Log', CAST(N'2018-02-03T17:06:22.307' AS DateTime), 0, N'58containsbreach1000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (14, 1, 1, N'Walls Modified in Last 30 Days', CAST(N'2018-02-03T17:06:22.447' AS DateTime), 0, N'11equal110within_last301000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (15, 1, 1, N'Walls Expiring in Next 30 Days', CAST(N'2018-02-03T17:06:22.573' AS DateTime), 0, N'11equal112within_next301000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (16, 1, 5, N'All Acknowledgments', CAST(N'2018-02-03T17:06:25.083' AS DateTime), 0, N'360equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (17, 1, 5, N'Outstanding Acknowledgments', CAST(N'2018-02-03T17:06:25.127' AS DateTime), 0, N'360equal166equal01000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (18, 1, 5, N'Outstanding Acknowledgments Older than 30 Days', CAST(N'2018-02-03T17:06:25.227' AS DateTime), 0, N'360equal166equal067prior_to301000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (19, 1, 3, N'Self-Maintaining Activity', CAST(N'2018-02-03T17:07:06.123' AS DateTime), 0, N'71equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (20, 1, 1, N'Recent Activity', CAST(N'2018-02-03T17:07:39.833' AS DateTime), 0, N'10DESC15') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (21, 1, 13, N'Release Exception Log', CAST(N'2018-02-03T17:07:48.013' AS DateTime), 0, N'58containsRelease Exception1000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (22, 1, 15, N'Walls By Matter', CAST(N'2018-02-03T17:08:12.697' AS DateTime), 0, N' + + + + + + + 222equal1 + 0equal + 0equal + + + 1000 + 206ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (23, 1, 17, N'Legal Holds By Client', CAST(N'2018-02-03T17:08:24.717' AS DateTime), 0, N' + + + + + + + 267equal1 + 0equal + 0equal + + + 1000 + 256ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (24, 1, 18, N'Legal Holds By User', CAST(N'2018-02-03T17:08:24.740' AS DateTime), 0, N' + + + + + + + 292equal1 + 0equal + 0equal + + + 1000 + 279ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (25, 1, 19, N'Legal Holds By Matter', CAST(N'2018-02-03T17:08:24.767' AS DateTime), 0, N' + + + + + + + 320equal1 + 0equal + 0equal + + + 1000 + 304ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (26, 1, 20, N'Legal Hold Log', CAST(N'2018-02-03T17:08:24.790' AS DateTime), 0, N' + + + + + + + + 1000 + 333ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (27, 1, 21, N'Legal Hold Acknowledgments', CAST(N'2018-02-03T17:08:24.817' AS DateTime), 0, N' + + + + + + + 352equal1 + 0equal + 0equal + + + 1000 + 340ASC +') +SET IDENTITY_INSERT [dbo].[Reports] OFF +INSERT [dbo].[ReportsConflictingLatestUpdateDate] ([ReportTypeId], [LatestUpdateDate], [UpdateStartTime]) VALUES (8, CAST(N'2018-02-03T17:07:33.603' AS DateTime), NULL) +INSERT [dbo].[ReportsConflictingLatestUpdateDate] ([ReportTypeId], [LatestUpdateDate], [UpdateStartTime]) VALUES (9, CAST(N'2018-02-03T17:07:33.640' AS DateTime), NULL) +INSERT [dbo].[ReportsConflictingLatestUpdateDate] ([ReportTypeId], [LatestUpdateDate], [UpdateStartTime]) VALUES (10, CAST(N'2018-02-03T17:07:33.663' AS DateTime), NULL) +INSERT [dbo].[ReportsConflictingLatestUpdateDate] ([ReportTypeId], [LatestUpdateDate], [UpdateStartTime]) VALUES (11, CAST(N'2018-02-03T17:07:33.690' AS DateTime), NULL) +SET IDENTITY_INSERT [dbo].[ReportTypes] ON + +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (1, N'Walls', N'Report on general data related to walls. Each row of the report corresponds to one wall.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (2, N'Walls by Client', N'Report on data related to walls organized by client. Each row of the report corresponds one client-wall combination.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (3, N'Walls by User', N'Report on data related to walls organized by user. Each row of the report corresponds one user-wall combination.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (5, N'Wall Acknowledgments', N'Report on data related to user acknowledgments. Each row of the report corresponds to one user acknowledgment for a wall.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (6, N'Wall Definition Warnings', N'Reports which help identify walls that may put information or people in conflicting configurations.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (7, N'Users on Multiple Sides of a Wall', N'Report of users that exist on more than one side of a wall.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (8, N'Explicit Conflicting Access', N'Report on data related to user explicit conflicting access. Each row of the report corresponds to one explicit access conflict.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (9, N'Implicit Conflicting Access', N'Report on data related to user implicit conflicting access. Each row of the report corresponds to one implicit access conflict.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (10, N'Explicit Conflicting Shared Resources', N'Report on data related to related users explicit conflicting access. Each row of the report corresponds to one explicit access conflict.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (11, N'Implicit Conflicting Shared Resources', N'Report on data related to related users implicit conflicting access. Each row of the report corresponds to one implicit access conflict.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (12, N'Matter Teams by User', N'Report on data related to matter teams organized by user. Each row of the report corresponds one user-matter team combination.', NULL, NULL) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (13, N'Wall Logs', N'Report on data related to Intapp Walls log. Each row of the report corresponds to one log message.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (14, N'Matter Team Logs', N'Reports on data related to Matter Team Manager log. Each row of the report corresponds to one log message.', NULL, NULL) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (15, N'Walls by Matter', N'Report on data related to walls organized by matter. Each row of the report corresponds one matter-wall combination.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (16, N'Legal Holds by Type', N'Report on general data related to legal holds. Each row of the report corresponds to one legal hold.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (17, N'Legal Holds by Client', N'Report on data related to legal holds organized by client. Each row of the report corresponds one client-legal hold combination.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (18, N'Legal Holds by User', N'Report on data related to legal holds organized by user. Each row of the report corresponds one user-legal hold combination.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (19, N'Legal Holds by Matter', N'Report on data related to legal holds organized by matter. Each row of the report corresponds one matter-legal hold combination', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (20, N'Legal Hold Logs', N'Report on data contained within the legal hold logs. Each row of the report corresponds to one log message.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (21, N'Legal Hold Acknowledgments', N'Report on data related to user acknowledgments. Each row of the report corresponds to one user acknowledgment for a legal hold.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (22, N'Acknowledgments', N'Report on data related to user acknowledgments. Each row of the report corresponds to one user acknowledgment.', NULL, NULL) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (23, N'System Logs', N'Report on system log messages. Each row of the report corresponds to an entry in the system log.', NULL, NULL) +SET IDENTITY_INSERT [dbo].[ReportTypes] OFF +SET IDENTITY_INSERT [dbo].[RepositoryTypes] ON + +INSERT [dbo].[RepositoryTypes] ([RepositoryTypeId], [RepositoryType]) VALUES (1, N'IWOV') +INSERT [dbo].[RepositoryTypes] ([RepositoryTypeId], [RepositoryType]) VALUES (2, N'DM5') +INSERT [dbo].[RepositoryTypes] ([RepositoryTypeId], [RepositoryType]) VALUES (3, N'BOX') +SET IDENTITY_INSERT [dbo].[RepositoryTypes] OFF +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ActivityRetentionPolicyTrigger', N'WallsJobs', N'0 0 2 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'CalculateStatisticsTrigger', N'WallsJobs', N'0 03 3 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'DeleteObjectReleaseExceptionsTrigger', N'WallsJobs', N'0 2/5 * * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ExecuteTrackersTrigger', N'WallsJobs', N'0 0/5 * * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ExpireMatterTeamMembersTrigger', N'WallsJobs', N'0 30 1 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'PerformMaintenanceTrigger', N'WallsJobs', N'0 0 3 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'RecalculateDEGMembershipsTrigger', N'WallsJobs', N'0 0 4 ? * TUE', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ReloadSettingsTrigger', N'WallsJobs', N'0 0 1/1 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ReportTrigger', N'WallsJobs', N'0 0/5 * * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'SendDigestNotificationsTrigger', N'WallsJobs', N'0 0 1 ? * SAT', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'SendNotificationTrigger', N'WallsJobs', N'0 2/5 * * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'UpdateAuditReportsTrigger', N'WallsJobs', N'0 0 2 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'ActivityRetentionPolicyJob', N'WallsJobs', N'Job that fires activity retention policy to the intermediate db.', N'Com.IntApp.Walls.Scheduler.Jobs.ActivityRetentionPolicyJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'CalculateStatisticsJob', N'WallsJobs', N'Job that fires calculation of activity statistics.', N'Com.IntApp.Walls.Scheduler.Jobs.CalculateStatisticsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'DeleteObjectReleaseExceptionsJob', N'WallsJobs', N'Job that deletes object release exceptions that are expired', N'Com.IntApp.Walls.Scheduler.Jobs.DeleteObjectReleaseExceptionsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'ExecuteTrackersJob', N'WallsJobs', N'Job that fires execution of trackers.', N'Com.IntApp.Walls.Scheduler.Jobs.ExecuteTrackersJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'ExpireMatterTeamMembersJob', N'WallsJobs', N'Job that removes expired members and demotes expired admins of matter teams', N'Com.IntApp.Walls.Scheduler.Jobs.ExpireMatterTeamMembersJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000010903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F020000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A6563740000000010050000000200000006070000000D69676E6F72654578706972656406080000000D69676E6F7265496E76616C696410060000000200000006090000000130060A00000001300B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'JobInitializationPlugin_xml_GeneratedJobs_xml', N'JobInitializationPlugin', NULL, N'Quartz.Job.FileScanJob, Quartz', N'0', N'1', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000010903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F040000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A6563740000000010050000000300000006070000001746494C455F5343414E5F4C495354454E45525F4E414D4506080000000946494C455F4E414D450609000000124C4153545F4D4F4449464945445F54494D45100600000003000000060A0000001B4A6F62496E697469616C697A6174696F6E506C7567696E5F786D6C060B00000042433A5C50726F6772616D2046696C65732028783836295C496E746170705C57425363686564756C6572536572766963655C47656E6572617465644A6F62732E786D6C080D51581625666DD5880B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'PerformMaintenance', N'WallsJobs', N'Job that performs maintenance for Intapp Walls', N'Com.IntApp.Walls.Scheduler.Jobs.PerformMaintenanceJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000010903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F070000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A6563740000000010050000000700000006070000001F69676E6F726555706461746552656C6174696F6E7368697050616972696E6706080000002369676E6F7265457874656E73696F6E735175657279526573756C7473436C65616E757006090000001C69676E6F7265456E61626C696E6745666665637469766557616C6C73060A0000001A69676E6F7265416C65727444657461696C735472696D6D696E67060B0000002069676E6F726555706461746557616C6C53656375726974795374617475736573060C0000001B69676E6F726544697361626C696E674578706972656457616C6C73060D0000001769676E6F726553797374656D4C6F675472696D6D696E67100600000007000000060E0000000130060F000000013006100000000130061100000001300612000000013006130000000130061400000001300B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'RecalculateDEGMembershipsJob', N'WallsJobs', N'Job that recalculate Dynamic Entity Group membership.', N'Com.IntApp.Walls.Scheduler.Jobs.RecalculateDEGMembershipsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'ReloadSettingsJob', N'WallsJobs', N'Job that updates the jobs configuration', N'Com.IntApp.Walls.Scheduler.Jobs.ReloadSettingsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'RunReportsJob', N'WallsJobs', N'Job that runs scheduled reports', N'Com.IntApp.Walls.Scheduler.Jobs.RunReportsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'SendDigestNotificationsJob', N'WallsJobs', N'Job that fires digest notification sending.', N'Com.IntApp.Walls.Scheduler.Jobs.SendDigestNotificationsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'SendNotificationsJob', N'WallsJobs', N'Job that sends scheduled notifications.', N'Com.IntApp.Walls.Scheduler.Jobs.SendNotificationsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'UpdateAuditReportsJob', N'WallsJobs', N'Job that updates data for audit reports', N'Com.IntApp.Walls.Scheduler.Jobs.UpdateAuditReportsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'CALENDAR_ACCESS') +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'JOB_ACCESS') +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'MISFIRE_ACCESS') +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'STATE_ACCESS') +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'TRIGGER_ACCESS') +INSERT [dbo].[SCHEDULER_SIMPLE_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [REPEAT_COUNT], [REPEAT_INTERVAL], [TIMES_TRIGGERED]) VALUES (N'JobInitializationPlugin_xml_GeneratedJobs_xml', N'JobInitializationPlugin', -1, 60000, 2) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ActivityRetentionPolicyTrigger', N'WallsJobs', N'ActivityRetentionPolicyJob', N'WallsJobs', N'0', NULL, 636535656000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'CalculateStatisticsTrigger', N'WallsJobs', N'CalculateStatisticsJob', N'WallsJobs', N'0', NULL, 636535693800000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'DeleteObjectReleaseExceptionsTrigger', N'WallsJobs', N'DeleteObjectReleaseExceptionsJob', N'WallsJobs', N'0', NULL, 636535210200000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ExecuteTrackersTrigger', N'WallsJobs', N'ExecuteTrackersJob', N'WallsJobs', N'0', NULL, 636535209000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ExpireMatterTeamMembersTrigger', N'WallsJobs', N'ExpireMatterTeamMembersJob', N'WallsJobs', N'0', NULL, 636535638000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'JobInitializationPlugin_xml_GeneratedJobs_xml', N'JobInitializationPlugin', N'JobInitializationPlugin_xml_GeneratedJobs_xml', N'JobInitializationPlugin', N'1', NULL, 636535209030000000, 636535208430000000, 5, N'WAITING', N'SIMPLE', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'PerformMaintenanceTrigger', N'WallsJobs', N'PerformMaintenance', N'WallsJobs', N'0', NULL, 636535692000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'RecalculateDEGMembershipsTrigger', N'WallsJobs', N'RecalculateDEGMembershipsJob', N'WallsJobs', N'0', NULL, 636540912000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ReloadSettingsTrigger', N'WallsJobs', N'ReloadSettingsJob', N'WallsJobs', N'0', NULL, 636535224000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ReportTrigger', N'WallsJobs', N'RunReportsJob', N'WallsJobs', N'0', NULL, 636535209000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'SendDigestNotificationsTrigger', N'WallsJobs', N'SendDigestNotificationsJob', N'WallsJobs', N'0', NULL, 636538212000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'SendNotificationTrigger', N'WallsJobs', N'SendNotificationsJob', N'WallsJobs', N'0', NULL, 636535210200000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'UpdateAuditReportsTrigger', N'WallsJobs', N'UpdateAuditReportsJob', N'WallsJobs', N'0', NULL, 636535656000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[TrackerCategories] ([TrackerCategoryId], [Name]) VALUES (1, N'Custom') +INSERT [dbo].[TrackerCategories] ([TrackerCategoryId], [Name]) VALUES (2, N'Template') +INSERT [dbo].[TrackerCategories] ([TrackerCategoryId], [Name]) VALUES (3, N'Linked') +SET IDENTITY_INSERT [dbo].[TrackerTypes] ON + +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (1, N'Custom', 1, N'custom.png', N'Standard Summary/Threshold not linked to a Policy', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (2, N'Template - Same Policy Side', 2, N'template_sameside.png', N'For clients/matters on each policy side, monitor activity for users on the SAME policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (3, N'Template - Other Policy Sides', 2, N'template_otherside.png', N'For clients/matters on each policy side, monitor activity for users on the OTHER policy sides', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (4, N'Template - All Except Policy Side', 2, N'template_allexceptside.png', N'For clients/matters on each policy side, monitor activity for all users EXCEPT users on the SAME policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (5, N'Template - All Users', 2, N'template_allusers.png', N'For clients/matters on each policy side, monitor activity for all users', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (6, N'Linked - Same Policy Side', 3, N'linked_sameside.png', N'For clients/matters on each policy side, monitor activity for users on the SAME policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (7, N'Linked - Other Policy Sides', 3, N'linked_otherside.png', N'For clients/matters on each policy side, monitor activity for users on the OTHER policy sides', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (8, N'Linked - All Except Policy Side', 3, N'linked_allexceptside.png', N'For clients/matters on each policy side, monitor activity for all users EXCEPT users on the SAME policy side ', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (9, N'Linked - All Users', 3, N'linked_allusers.png', N'For clients/matters on each policy side, monitor activity for all users', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (10, N'Template - Contractor', 2, N'template_contractor.png', N'For users on the policy side, monitor activity for all clients and matters except those on the policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (11, N'Linked - Contractor', 3, N'linked_contractor.png', N'For users on the policy side, monitor activity for all clients and matters except those on the policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (12, N'Smart', 1, N'statistical_allusers.png', N'For clients/matters on each tracker side, monitor activity for all users using statistical analysis', 0) +SET IDENTITY_INSERT [dbo].[TrackerTypes] OFF +SET IDENTITY_INSERT [dbo].[WallAccessTypes] ON + +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (1, N'Confidential Client/Matter - Client Requested', N'Off', N'Off', 1, N'WallIcon-ClientRequested.png', N'Matter confidentiality in response to a client request. Only explicitly selected people and groups have access to matter information.', N' +1111 + + +1 +1 +', N'Off', N'Off', 1, N'Fixed Lookback And Ongoing') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (2, N'Confidential Client/Matter - Partner Requested', N'Off', N'Off', 1, N'WallIcon-PartnerRequested.png', N'Matter confidentiality in response to a partner request. Only explicitly selected people and groups have access to matter information.', N' +1111 + + +1 +1 +', N'Off', N'Off', 1, N'Fixed Lookback And Ongoing') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (3, N'Ethical Screen - Waiver-Driven', N'On', N'Off', 2, N'WallIcon-WaiverDriven.png', N'Ethical wall in which a waiver has been obtained from one or more clients. Selected people cannot access specified client or matter information.', N' +11111111 + + +2 +2 +', N'Off', N'Off', 2, N'Fixed Lookback And Ongoing') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (4, N'Ethical Screen - Lateral Hire', N'Off', N'Off', 2, N'WallIcon-LateralHire.png', N'Ethical wall in which a lateral is being barred from a list of conflicting clients or matters.', N' +111 + + +2 +2 +', N'Off', N'Off', 2, N'Fixed Lookback And Ongoing') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (5, N'Internal Legal Hold', N'On', N'Off', 4, N'WallIcon-LegalHold.png', N'Legal hold - Certain client or matter information needs to be preserved. Users subject to this hold will not be able to modify the affected data.', N' + + + + 1 + 1 + 1 + 1 + + + 1 + 1 + 1 + 1 + + + + + + + + +1 +1 +0 +', N'Off', N'Off', 4, N'No Default') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (6, N'Foundational Policy', N'Off', N'Off', 5, N'WallIcon-Foundational.png', N'Clients and matters affected by this foundational policy will be set to private with only the selected users being granted access. Exclusionary wall security affecting these clients and matters will still be applied and any inclusionary walls will take precedence over this foundational policy', N' + + + + 1 + 1 + 1 + 1 + + + 1 + 1 + 1 + 1 + + + + + + + +1 +1 +', N'Off', N'Off', 5, N'Fixed Lookback And Ongoing') +SET IDENTITY_INSERT [dbo].[WallAccessTypes] OFF +SET IDENTITY_INSERT [dbo].[WallRoles] ON + +INSERT [dbo].[WallRoles] ([WallRoleId], [WallRoleName], [WallRoleXML]) VALUES (1, N'Default Access', NULL) +SET IDENTITY_INSERT [dbo].[WallRoles] OFF +SET IDENTITY_INSERT [dbo].[Widget] ON + +INSERT [dbo].[Widget] ([Id], [Name], [Description], [Url], [OrderNumber], [Editable], [SupportRedirection]) VALUES (2, N'Chart', N'Walls By Type or Acknowledgments HighCharts chart.', N'Widgets/ChartWidget.ascx', 1, 0, 1) +INSERT [dbo].[Widget] ([Id], [Name], [Description], [Url], [OrderNumber], [Editable], [SupportRedirection]) VALUES (3, N'Recent Activity', N'Displays walls with recent activity that was committed by the user currently logged into the application.', N'Widgets/RecentActivityWidget.ascx', 2, 0, 1) +INSERT [dbo].[Widget] ([Id], [Name], [Description], [Url], [OrderNumber], [Editable], [SupportRedirection]) VALUES (4, N'Matter Access Check', N'Check user access control availability.', N'Widgets/MatterAccessCheckWidget.ascx', 3, 0, 1) +INSERT [dbo].[Widget] ([Id], [Name], [Description], [Url], [OrderNumber], [Editable], [SupportRedirection]) VALUES (5, N'Report', N'Widget to display reports.', N'Widgets/ReportViewerWidget.ascx', 4, 0, 1) +SET IDENTITY_INSERT [dbo].[Widget] OFF +SET IDENTITY_INSERT [dbo].[WidgetInstance] ON + +INSERT [dbo].[WidgetInstance] ([Id], [WidgetZoneId], [WidgetId], [OrderNumber], [Expanded], [Maximized], [Resized], [Width], [Height], [Title], [WidgetProperties]) VALUES (2, 1, 2, 1, 1, 1, 0, 450, 330, N'Policies By Type', N'WallsByType') +INSERT [dbo].[WidgetInstance] ([Id], [WidgetZoneId], [WidgetId], [OrderNumber], [Expanded], [Maximized], [Resized], [Width], [Height], [Title], [WidgetProperties]) VALUES (3, 1, 3, 2, 1, 1, 0, 450, 330, N'All Recent Activity', N'All') +SET IDENTITY_INSERT [dbo].[WidgetInstance] OFF +SET IDENTITY_INSERT [dbo].[WidgetZone] ON + +INSERT [dbo].[WidgetZone] ([Id], [WidgetZoneTypeId], [UserId], [OrderNumber], [Title]) VALUES (1, 1, 1, 0, N'Main dashboard') +SET IDENTITY_INSERT [dbo].[WidgetZone] OFF +SET IDENTITY_INSERT [dbo].[WidgetZoneType] ON + +INSERT [dbo].[WidgetZoneType] ([Id], [WidgetZoneType], [WidgetZoneTypeDescription]) VALUES (1, N'Dashboard', N'Widget Zones which are located on the home page.') +SET IDENTITY_INSERT [dbo].[WidgetZoneType] OFF +/****** Object: Index [IX_TrackerAlertDetails_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerAlertDetails_1] ON [dbo].[AlertDetails] +( + [AlertId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_CustomFields_FieldId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_CustomFields_FieldId] ON [dbo].[AlertDetailsCustomFields] +( + [FieldId] ASC, + [RepositoryTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_CustomFields_FieldName] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_CustomFields_FieldName] ON [dbo].[AlertDetailsCustomFields] +( + [FieldName] ASC, + [RepositoryTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerAlerts_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerAlerts_1] ON [dbo].[Alerts] +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_AttorneyAcknowledgments_WallSideId_isAcknowledged_isArchived] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_AttorneyAcknowledgments_WallSideId_isAcknowledged_isArchived] ON [dbo].[AttorneyAcknowledgments] +( + [WallSideId] ASC, + [isAcknowledged] ASC, + [isArchived] ASC +) +INCLUDE ( [EntityId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Config_ConfigVariable] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_Config_ConfigVariable] ON [dbo].[Config] +( + [ConfigVariable] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_1] ON [dbo].[Entities] +( + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_2] ON [dbo].[Entities] +( + [EntityRemoteSystemId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_3] ON [dbo].[Entities] +( + [ParentRemoteSystemId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_4] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_4] ON [dbo].[Entities] +( + [IsEnabledForSearch] ASC, + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_5] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_5] ON [dbo].[Entities] +( + [MatterTeamEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_6] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_6] ON [dbo].[Entities] +( + [WindowsNetworkLogon] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_7] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_7] ON [dbo].[Entities] +( + [Modified] DESC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_EntityDisplayId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_EntityDisplayId] ON [dbo].[Entities] +( + [EntityDisplayId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_EntityCustomFieldConfig_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_EntityCustomFieldConfig_1] ON [dbo].[EntityCustomFieldConfig] +( + [EntityTypeId] ASC, + [DisplayName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_EntityKeyMap_ParentEntityId_IsActive] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_EntityKeyMap_ParentEntityId_IsActive] ON [dbo].[EntityKeyMap] +( + [ParentEntityId] ASC, + [IsActive] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ErrorLog_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ErrorLog_1] ON [dbo].[ErrorLog] +( + [ServiceType] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ErrorLog_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ErrorLog_2] ON [dbo].[ErrorLog] +( + [LogLevel] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ErrorLog_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ErrorLog_3] ON [dbo].[ErrorLog] +( + [Created] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ExtensionQueryResults_RequestId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ExtensionQueryResults_RequestId] ON [dbo].[ExtensionQueryResults] +( + [RequestId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ExtensionServiceJobs_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ExtensionServiceJobs_1] ON [dbo].[ExtensionServiceJobs] +( + [ExtensionServiceName] ASC, + [ExtensionType] ASC, + [LibraryName] ASC, + [FinalStatus] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [ExternalUsersAccessHistory_SearchFields] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [ExternalUsersAccessHistory_SearchFields] ON [dbo].[ExternalUsersAccessHistory] +( + [MatterEntityId] ASC, + [ExternalUserEntityId] ASC, + [ActivityType] ASC, + [ActivityDate] ASC +) +INCLUDE ( [AccessHistoryId], + [ActivityReason]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_InsidersReports_MatterEntityID] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_InsidersReports_MatterEntityID] ON [dbo].[InsidersReports] +( + [MatterEntityID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Log_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Log_1] ON [dbo].[Log] +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Log_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Log_2] ON [dbo].[Log] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Log_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Log_3] ON [dbo].[Log] +( + [LogMessageType] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamHistories] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamHistories] ON [dbo].[MatterTeamHistories] +( + [MatterEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamHistories_UserEntityId_IsActive_MatterEntityId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamHistories_UserEntityId_IsActive_MatterEntityId] ON [dbo].[MatterTeamHistories] +( + [UserEntityId] ASC, + [IsActive] ASC, + [MatterEntityId] ASC +) +INCLUDE ( [MatterTeamHistoryId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamSubscriptionRequests_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamSubscriptionRequests_1] ON [dbo].[MatterTeamSubscriptionRequests] +( + [MatterTeamId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamSubscriptionRequests_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamSubscriptionRequests_2] ON [dbo].[MatterTeamSubscriptionRequests] +( + [UserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamSubscriptionRequests_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamSubscriptionRequests_3] ON [dbo].[MatterTeamSubscriptionRequests] +( + [AdminEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Notifications] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Notifications] ON [dbo].[Notifications] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ObjectReleaseExceptions_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_1] ON [dbo].[ObjectReleaseExceptions] +( + [ExtensionType] ASC, + [LibraryName] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ObjectReleaseExceptions_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_2] ON [dbo].[ObjectReleaseExceptions] +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ObjectReleaseExceptions_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_3] ON [dbo].[ObjectReleaseExceptions] +( + [ExpirationDate] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ObjectReleaseExceptions_4] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_4] ON [dbo].[ObjectReleaseExceptions] +( + [ObjectId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [PermanentInsidersAccessHistory_SearchFields] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [PermanentInsidersAccessHistory_SearchFields] ON [dbo].[PermanentInsidersAccessHistory] +( + [UserEntityId] ASC, + [ActivityType] ASC, + [ActivityDate] ASC +) +INCLUDE ( [AccessHistoryId], + [ActivityReason]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportFields_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportFields_1] ON [dbo].[ReportFields] +( + [ReportTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Reports] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Reports] ON [dbo].[Reports] +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportSchedules_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportSchedules_1] ON [dbo].[ReportSchedules] +( + [ReportID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportSchedules_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportSchedules_3] ON [dbo].[ReportSchedules] +( + [IsEnabled] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportSchedules_4] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportSchedules_4] ON [dbo].[ReportSchedules] +( + [NextTimeDue] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_SummaryDetails_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_SummaryDetails_1] ON [dbo].[SummaryDetails] +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerClientsAndMatters_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerClientsAndMatters_1] ON [dbo].[TrackerClientsAndMatters] +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerExecutionClientsAndMatters_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerExecutionClientsAndMatters_1] ON [dbo].[TrackerExecutionClientsAndMatters] +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerExecutions_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerExecutions_1] ON [dbo].[TrackerExecutions] +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Thresholds_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Thresholds_1] ON [dbo].[Trackers] +( + [Modified] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Thresholds_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Thresholds_2] ON [dbo].[Trackers] +( + [IsDeleted] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Thresholds_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Thresholds_3] ON [dbo].[Trackers] +( + [IsEnabled] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ThresholdWatchList_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ThresholdWatchList_1] ON [dbo].[TrackerWatchList] +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WallCustomFieldConfig_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_WallCustomFieldConfig_1] ON [dbo].[WallCustomFieldConfig] +( + [DisplayName] ASC, + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WallRoles_Name] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallRoles_Name] ON [dbo].[WallRoles] +( + [WallRoleName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Walls_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Walls_1] ON [dbo].[Walls] +( + [CreatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Walls_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Walls_2] ON [dbo].[Walls] +( + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [UIX_Walls_FoundationalGroupId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [UIX_Walls_FoundationalGroupId] ON [dbo].[Walls] +( + [FoundationalGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WallSecurityStatus_Entity] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSecurityStatus_Entity] ON [dbo].[WallSecurityStatus] +( + [EntityId] ASC +) +INCLUDE ( [WallId], + [Status]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSecurityStatus_WallId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSecurityStatus_WallId] ON [dbo].[WallSecurityStatus] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSecurityStatus_WallSecurityStatusId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSecurityStatus_WallSecurityStatusId] ON [dbo].[WallSecurityStatus] +( + [WallSecurityStatusId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSideEntities_EntityIdsForWallId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSideEntities_EntityIdsForWallId] ON [dbo].[WallSideEntities] +( + [WallId] ASC +) +INCLUDE ( [WallSideId], + [EntityId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSideEntities_WasAddedBySelfMaintaining] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSideEntities_WasAddedBySelfMaintaining] ON [dbo].[WallSideEntities] +( + [WasAddedBySelfMaintaining] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSides] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSides] ON [dbo].[WallSides] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Widget_Name] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_Widget_Name] ON [dbo].[Widget] +( + [Name] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WidgetZone] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_WidgetZone] ON [dbo].[WidgetZone] +( + [Title] ASC, + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +ALTER TABLE [dbo].[AlertDetails] ADD CONSTRAINT [DF_AlertDetails_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_IsEnabled] DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_CreationDate] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_ModifiedTime] DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD DEFAULT ((0)) FOR [InsidersModuleAccess] +GO +ALTER TABLE [dbo].[Attachments] ADD CONSTRAINT [DF_Attachments_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] ADD DEFAULT ((0)) FOR [isAcknowledged] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] ADD DEFAULT ((0)) FOR [isArchived] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] ADD CONSTRAINT [DF_DynamicEntityGroupExceptions_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] ADD CONSTRAINT [DF_DynamicEntityGroupExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[Entities] ADD DEFAULT ((1)) FOR [IsEnabledForSearch] +GO +ALTER TABLE [dbo].[Entities] ADD DEFAULT ((1)) FOR [NotificationRoleId] +GO +ALTER TABLE [dbo].[EntitiesMatterTeamFields] ADD DEFAULT ((0)) FOR [IsRelationshipPaired] +GO +ALTER TABLE [dbo].[EntitiesUserFields] ADD DEFAULT ((0)) FOR [IsExceptedFromActiveDirectoryGroups] +GO +ALTER TABLE [dbo].[EntitiesUserFields] ADD DEFAULT ((0)) FOR [IsExceptedFromJoiningMatterTeam] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT ('Custom Field') FOR [Description] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsIncludedInNotifications] DEFAULT ((0)) FOR [IsIncludedInNotifications] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT ((1)) FOR [IsIncludedInEntityTooltip] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsMultiValued] DEFAULT ((0)) FOR [IsMultiValued] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsIncludedInExtendedValidation] DEFAULT ((0)) FOR [IsIncludedInExtendedValidation] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT ((1)) FOR [IsIncludedInGeneralInformation] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsConfidential] DEFAULT ((0)) FOR [IsConfidential] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT (NULL) FOR [DateTimeFormat] +GO +ALTER TABLE [dbo].[EntityKeyMap] ADD CONSTRAINT [DF_EntityKeyMap_IsActive] DEFAULT ((1)) FOR [IsActive] +GO +ALTER TABLE [dbo].[EntityKeyMap] ADD CONSTRAINT [DF_EntityKeyMap_IsMTHistoryConflict] DEFAULT ((0)) FOR [IsMTHistoryConflict] +GO +ALTER TABLE [dbo].[EntityRelationshipTypes] ADD CONSTRAINT [DF_EntityRelationshipTypes_IsDirectRelationshipValidated] DEFAULT ((0)) FOR [IsDirectRelationshipValidated] +GO +ALTER TABLE [dbo].[EntityRelationshipTypes] ADD CONSTRAINT [DF_EntityRelationshipTypes_IsSharedRelationshipValidated] DEFAULT ((0)) FOR [IsSharedRelationshipValidated] +GO +ALTER TABLE [dbo].[ErrorLog] ADD DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[ExtensionServiceLocks] ADD CONSTRAINT [DF_LockTime_GETUTCDATE] DEFAULT (getutcdate()) FOR [LockTime] +GO +ALTER TABLE [dbo].[FileShareADGroupStatuses] ADD DEFAULT (getutcdate()) FOR [LastAccessTime] +GO +ALTER TABLE [dbo].[GlobalExceptions] ADD CONSTRAINT [DF_GlobalExceptions_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[GlobalExceptions] ADD CONSTRAINT [DF_GlobalExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[GroupEntityLog] ADD CONSTRAINT [DF_GroupEntityLog] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[InsidersReportFields] ADD CONSTRAINT [DF_InsidersReportFields_IsHeaderField] DEFAULT ((0)) FOR [IsHeaderField] +GO +ALTER TABLE [dbo].[InsidersReportFields] ADD DEFAULT (NULL) FOR [DateTimeFormat] +GO +ALTER TABLE [dbo].[InsidersReportFields] ADD CONSTRAINT [DF_InsidersReportFields_IsPermanentInsiders] DEFAULT ((0)) FOR [IsPermanentInsiders] +GO +ALTER TABLE [dbo].[Log] ADD CONSTRAINT [DF_Log_LogMessageCreated] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[MatterAccessHistory] ADD CONSTRAINT [DF_MatterAccessHistory_WasAddedBySelfMaintaining] DEFAULT ((0)) FOR [WasAddedBySelfMaintaining] +GO +ALTER TABLE [dbo].[MatterTeamExceptions] ADD CONSTRAINT [DF_MatterTeamExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[MatterTeamHistories] ADD CONSTRAINT [DF_MatterTeamHistories_ActivityDate] DEFAULT (getdate()) FOR [ActivityDate] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsAdmin] DEFAULT ((0)) FOR [IsAdmin] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsDelegate] DEFAULT ((0)) FOR [IsDelegate] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_WallRoleId] DEFAULT ((1)) FOR [WallRoleId] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsExceptedFromInactiveStatus] DEFAULT ((0)) FOR [IsExceptedFromInactiveStatus] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsRestrictedToGlobalAdmins] DEFAULT ((0)) FOR [IsRestrictedToGlobalAdmins] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_CanRemoveUsers] DEFAULT ((0)) FOR [CanRemoveUsers] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD DEFAULT ((0)) FOR [CanSubscribeUsers] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_ForceExpiration] DEFAULT ((0)) FOR [ForceNotification] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_IncludeAcknowledgments] DEFAULT ((0)) FOR [IncludeAcknowledgments] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_NotificationType] DEFAULT ('Event-Driven') FOR [NotificationType] +GO +ALTER TABLE [dbo].[Notifications] ADD DEFAULT ('Wall') FOR [Scope] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_NotificationName] DEFAULT ('') FOR [NotificationName] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_TriggerEvents] DEFAULT ((0)) FOR [TriggerEvents] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_IsDigest] DEFAULT ((0)) FOR [IsDigest] +GO +ALTER TABLE [dbo].[ObjectTemplate] ADD DEFAULT ((0)) FOR [SeparatorType] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_IsQueryable] DEFAULT ((1)) FOR [IsQueryable] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_IsSearchable] DEFAULT ((1)) FOR [IsSearchable] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_IsDefault] DEFAULT ((0)) FOR [IsDefault] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_OrderId] DEFAULT ((0)) FOR [OrderId] +GO +ALTER TABLE [dbo].[Reports] ADD CONSTRAINT [DF_Reports_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[Reports] ADD CONSTRAINT [DF_Reports_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[ReportSchedules] ADD CONSTRAINT [DF_ReportSchedules_RecipientAppUsers] DEFAULT ((0)) FOR [RecipientAppUsers] +GO +ALTER TABLE [dbo].[ReportSchedules] ADD CONSTRAINT [DF_ReportSchedules_SkipIfNoData] DEFAULT ((0)) FOR [SkipIfNoData] +GO +ALTER TABLE [dbo].[ReportSchedules] ADD CONSTRAINT [DF_ReportSchedules_IsEnabled] DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((1)) FOR [TrackerTypeId] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD CONSTRAINT [DF_TrackerExecutions_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [OnlyPrivate] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [OnlyDidNotAuthor] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [DistinctDocuments] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [IsCompleted] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [TrackActivityCategories] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((1)) FOR [ThresholdType] +GO +ALTER TABLE [dbo].[Trackers] ADD CONSTRAINT [DF_Thresholds_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[Trackers] ADD CONSTRAINT [DF_Thresholds_Modified] DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((0)) FOR [OnlyPrivate] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((0)) FOR [OnlyDidNotAuthor] +GO +ALTER TABLE [dbo].[Trackers] ADD CONSTRAINT [DF_Trackers_DistinctDocuments] DEFAULT ((1)) FOR [DistinctDocuments] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((0)) FOR [TrackActivityCategories] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((1)) FOR [ThresholdType] +GO +ALTER TABLE [dbo].[TrackerSides] ADD CONSTRAINT [DF_TrackerSides_TrackerSideName] DEFAULT ('Watch List') FOR [TrackerSideName] +GO +ALTER TABLE [dbo].[TrackerSides] ADD CONSTRAINT [DF_TrackerSides_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[TrackerTypes] ADD DEFAULT ((1)) FOR [TrackerCategoryId] +GO +ALTER TABLE [dbo].[TrackerTypes] ADD DEFAULT ((1)) FOR [IsVisible] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_SelfMaintaining] DEFAULT ('Off') FOR [SelfMaintaining] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_RequireAckForAccess] DEFAULT ('Off') FOR [RequireAckForAccess] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_OrderId] DEFAULT ((0)) FOR [OrderId] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_AutoAddMatterTeams] DEFAULT ('Off') FOR [AutoAddMatterTeams] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_RelationshipPairing] DEFAULT ('Off') FOR [RelationshipPairing] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessType_DefaultSelfMaintainingIntervalType] DEFAULT ('Fixed Lookback And Ongoing') FOR [DefaultSelfMaintainingIntervalType] +GO +ALTER TABLE [dbo].[WallCustomFieldConfig] ADD DEFAULT ('Custom Field') FOR [Description] +GO +ALTER TABLE [dbo].[WallExceptions] ADD CONSTRAINT [DF_WallExceptions_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[WallExceptions] ADD CONSTRAINT [DF_WallExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_WallAccessTypeId] DEFAULT ((1)) FOR [WallAccessTypeId] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_Modified] DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_IsEnabled] DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[Walls] ADD DEFAULT ((0)) FOR [IsSelfMaintaining] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DEF_Walls_RequireAcknowledgement] DEFAULT ((0)) FOR [IsRequireAcknowledgement] +GO +ALTER TABLE [dbo].[Walls] ADD DEFAULT ((0)) FOR [IsRelationshipPaired] +GO +ALTER TABLE [dbo].[WallSideEntities] ADD CONSTRAINT [DF_WallSideEntities_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[WallSideEntities] ADD CONSTRAINT [DF_WallSideEntities_WasAddedBySelfMaintaining] DEFAULT ((0)) FOR [WasAddedBySelfMaintaining] +GO +ALTER TABLE [dbo].[WallSides] ADD CONSTRAINT [DF_WallSides_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[WallSides] ADD CONSTRAINT [DF_WallSides_WallSideName] DEFAULT ('Side') FOR [WallSideName] +GO +ALTER TABLE [dbo].[Widget] ADD CONSTRAINT [DF_Widget_Editable] DEFAULT ((0)) FOR [Editable] +GO +ALTER TABLE [dbo].[Widget] ADD CONSTRAINT [DF_Widget_SupportRedirection] DEFAULT ((1)) FOR [SupportRedirection] +GO +ALTER TABLE [dbo].[WidgetInstance] ADD CONSTRAINT [DF_WidgetZoneWidgets_Expanded] DEFAULT ((1)) FOR [Expanded] +GO +ALTER TABLE [dbo].[WidgetInstance] ADD CONSTRAINT [DF_WidgetZoneWidgets_Maximized] DEFAULT ((1)) FOR [Maximized] +GO +ALTER TABLE [dbo].[WidgetInstance] ADD CONSTRAINT [DF_WidgetZoneWidgets_Resized] DEFAULT ((0)) FOR [Resized] +GO +ALTER TABLE [dbo].[AccessHistory] WITH CHECK ADD CONSTRAINT [FK_AccessHistory_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[AccessHistory] CHECK CONSTRAINT [FK_AccessHistory_Entities] +GO +ALTER TABLE [dbo].[AccessHistory] WITH CHECK ADD CONSTRAINT [FK_AccessHistory_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[AccessHistory] CHECK CONSTRAINT [FK_AccessHistory_Walls] +GO +ALTER TABLE [dbo].[AccessHistory] WITH CHECK ADD CONSTRAINT [FK_AccessHistory_WallSides] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[AccessHistory] CHECK CONSTRAINT [FK_AccessHistory_WallSides] +GO +ALTER TABLE [dbo].[Activities] WITH CHECK ADD CONSTRAINT [FK_Activities_ActivityCategories] FOREIGN KEY([ActivityCategoryId]) +REFERENCES [dbo].[ActivityCategories] ([ActivityCategoryId]) +GO +ALTER TABLE [dbo].[Activities] CHECK CONSTRAINT [FK_Activities_ActivityCategories] +GO +ALTER TABLE [dbo].[Activities] WITH CHECK ADD CONSTRAINT [FK_Activities_RepositoryTypes] FOREIGN KEY([RepositoryTypeId]) +REFERENCES [dbo].[RepositoryTypes] ([RepositoryTypeId]) +GO +ALTER TABLE [dbo].[Activities] CHECK CONSTRAINT [FK_Activities_RepositoryTypes] +GO +ALTER TABLE [dbo].[AlertDetails] WITH CHECK ADD CONSTRAINT [FK_AlertDetails_Alerts] FOREIGN KEY([AlertId]) +REFERENCES [dbo].[Alerts] ([AlertId]) +GO +ALTER TABLE [dbo].[AlertDetails] CHECK CONSTRAINT [FK_AlertDetails_Alerts] +GO +ALTER TABLE [dbo].[AlertDetailsCustomFields] WITH CHECK ADD CONSTRAINT [FK_AlertDetailsCustomFields_RepositoryTypes] FOREIGN KEY([RepositoryTypeId]) +REFERENCES [dbo].[RepositoryTypes] ([RepositoryTypeId]) +GO +ALTER TABLE [dbo].[AlertDetailsCustomFields] CHECK CONSTRAINT [FK_AlertDetailsCustomFields_RepositoryTypes] +GO +ALTER TABLE [dbo].[Alerts] WITH NOCHECK ADD CONSTRAINT [FK_Alerts_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[Alerts] CHECK CONSTRAINT [FK_Alerts_Entities] +GO +ALTER TABLE [dbo].[Alerts] WITH NOCHECK ADD CONSTRAINT [FK_Alerts_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[Alerts] CHECK CONSTRAINT [FK_Alerts_TrackerExecutions] +GO +ALTER TABLE [dbo].[ApplicationUsers] WITH CHECK ADD CONSTRAINT [FK_ApplicationUsers_ApplicationRolesAT] FOREIGN KEY([ATRoleId]) +REFERENCES [dbo].[ApplicationRolesAT] ([RoleId]) +GO +ALTER TABLE [dbo].[ApplicationUsers] CHECK CONSTRAINT [FK_ApplicationUsers_ApplicationRolesAT] +GO +ALTER TABLE [dbo].[ApplicationUsers] WITH CHECK ADD CONSTRAINT [FK_ApplicationUsers_ApplicationRolesMTM] FOREIGN KEY([MTMRoleId]) +REFERENCES [dbo].[ApplicationRolesMTM] ([RoleId]) +GO +ALTER TABLE [dbo].[ApplicationUsers] CHECK CONSTRAINT [FK_ApplicationUsers_ApplicationRolesMTM] +GO +ALTER TABLE [dbo].[ApplicationUsers] WITH CHECK ADD CONSTRAINT [FK_ApplicationUsers_ApplicationRolesWB] FOREIGN KEY([WBRoleId]) +REFERENCES [dbo].[ApplicationRolesWB] ([RoleId]) +GO +ALTER TABLE [dbo].[ApplicationUsers] CHECK CONSTRAINT [FK_ApplicationUsers_ApplicationRolesWB] +GO +ALTER TABLE [dbo].[Attachments] WITH CHECK ADD CONSTRAINT [FK_Attachments_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Attachments] CHECK CONSTRAINT [FK_Attachments_ApplicationUsers] +GO +ALTER TABLE [dbo].[Attachments] WITH CHECK ADD CONSTRAINT [FK_Attachments_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[Attachments] CHECK CONSTRAINT [FK_Attachments_Walls] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] WITH CHECK ADD CONSTRAINT [FK_AttorneyAcknowledgments_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] CHECK CONSTRAINT [FK_AttorneyAcknowledgments_Entities] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] WITH CHECK ADD CONSTRAINT [FK_AttorneyAcknowledgments_WallSides] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] CHECK CONSTRAINT [FK_AttorneyAcknowledgments_WallSides] +GO +ALTER TABLE [dbo].[DefaultNotifications] WITH CHECK ADD CONSTRAINT [FK_DefaultNotifications_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[DefaultNotifications] CHECK CONSTRAINT [FK_DefaultNotifications_Notifications] +GO +ALTER TABLE [dbo].[DefaultNotifications] WITH CHECK ADD CONSTRAINT [FK_DefaultNotifications_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[DefaultNotifications] CHECK CONSTRAINT [FK_DefaultNotifications_WallAccessTypes] +GO +ALTER TABLE [dbo].[DefaultTrackers] WITH CHECK ADD CONSTRAINT [FK_DefaultTrackers_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[DefaultTrackers] CHECK CONSTRAINT [FK_DefaultTrackers_Trackers] +GO +ALTER TABLE [dbo].[DefaultTrackers] WITH CHECK ADD CONSTRAINT [FK_DefaultTrackers_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[DefaultTrackers] CHECK CONSTRAINT [FK_DefaultTrackers_WallAccessTypes] +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_DigestNotificationAttachments_Attachments] FOREIGN KEY([NotificationAttachmentId]) +REFERENCES [dbo].[Attachments] ([AttachmentId]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] CHECK CONSTRAINT [FK_DigestNotificationAttachments_Attachments] +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_DigestNotificationAttachments_DigestNotifications] FOREIGN KEY([DigestNotificationId]) +REFERENCES [dbo].[DigestNotifications] ([DigestNotificationId]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] CHECK CONSTRAINT [FK_DigestNotificationAttachments_DigestNotifications] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [FK_DigestNotifications_DigestNotificationContent] FOREIGN KEY([DigestNotificationContentId]) +REFERENCES [dbo].[DigestNotificationContent] ([DigestNotificationContentId]) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [FK_DigestNotifications_DigestNotificationContent] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [FK_DigestNotifications_NotificationHistory] FOREIGN KEY([NotificationHistoryId]) +REFERENCES [dbo].[NotificationHistory] ([NotificationHistoryId]) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [FK_DigestNotifications_NotificationHistory] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [FK_DigestNotifications_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [FK_DigestNotifications_Notifications] +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupDefinitions_ApplicationUsers] FOREIGN KEY([CreatedBy]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] CHECK CONSTRAINT [FK_DynamicEntityGroupDefinitions_ApplicationUsers] +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] WITH NOCHECK ADD CONSTRAINT [FK_DynamicEntityGroupDefinitions_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] CHECK CONSTRAINT [FK_DynamicEntityGroupDefinitions_Entities] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupExceptions_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] CHECK CONSTRAINT [FK_DynamicEntityGroupExceptions_ApplicationUsers] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupExceptions_DegEntities] FOREIGN KEY([DynamicGroupEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] CHECK CONSTRAINT [FK_DynamicEntityGroupExceptions_DegEntities] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupExceptions_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] CHECK CONSTRAINT [FK_DynamicEntityGroupExceptions_Entities] +GO +ALTER TABLE [dbo].[Entities] WITH CHECK ADD CONSTRAINT [FK_Entities_Entities] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[Entities] CHECK CONSTRAINT [FK_Entities_Entities] +GO +ALTER TABLE [dbo].[Entities] WITH CHECK ADD CONSTRAINT [FK_Entities_EntityTypes_1] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[Entities] CHECK CONSTRAINT [FK_Entities_EntityTypes_1] +GO +ALTER TABLE [dbo].[Entities] WITH CHECK ADD CONSTRAINT [FK_Entities_EntityTypes_2] FOREIGN KEY([ParentTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[Entities] CHECK CONSTRAINT [FK_Entities_EntityTypes_2] +GO +ALTER TABLE [dbo].[EntitiesMatterTeamFields] WITH CHECK ADD CONSTRAINT [FK_EntitiesMatterTeamFields_Entities] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntitiesMatterTeamFields] CHECK CONSTRAINT [FK_EntitiesMatterTeamFields_Entities] +GO +ALTER TABLE [dbo].[EntitiesUserFields] WITH CHECK ADD CONSTRAINT [FK_EntitiesUserFields_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntitiesUserFields] CHECK CONSTRAINT [FK_EntitiesUserFields_Entities] +GO +ALTER TABLE [dbo].[EntityCustomComboValues] WITH NOCHECK ADD CONSTRAINT [FK_EntityCustomComboValues_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[EntityCustomComboValues] CHECK CONSTRAINT [FK_EntityCustomComboValues_EntityTypes] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] WITH NOCHECK ADD CONSTRAINT [FK_EntityCustomFieldConfig_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] CHECK CONSTRAINT [FK_EntityCustomFieldConfig_EntityTypes] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_Entities_1] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_Entities_1] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_Entities_2] FOREIGN KEY([ParentEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_Entities_2] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_MatterTeamRole1] FOREIGN KEY([RoleId]) +REFERENCES [dbo].[MatterTeamRole] ([RoleId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_MatterTeamRole1] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_MatterTeamRole2] FOREIGN KEY([DemotionRoleId]) +REFERENCES [dbo].[MatterTeamRole] ([RoleId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_MatterTeamRole2] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [FK_EntityToEntityRelationships_Entities1] FOREIGN KEY([PrimaryEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [FK_EntityToEntityRelationships_Entities1] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [FK_EntityToEntityRelationships_Entities2] FOREIGN KEY([SubordinateEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [FK_EntityToEntityRelationships_Entities2] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [FK_EntityToEntityRelationships_EntityRelationshipTypes] FOREIGN KEY([EntityRelationshipTypeId]) +REFERENCES [dbo].[EntityRelationshipTypes] ([EntityRelationshipTypeId]) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [FK_EntityToEntityRelationships_EntityRelationshipTypes] +GO +ALTER TABLE [dbo].[ExternalUserFields] WITH CHECK ADD CONSTRAINT [FK_ExternalUserFields_ApplicationUsers] FOREIGN KEY([CreatedBy]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[ExternalUserFields] CHECK CONSTRAINT [FK_ExternalUserFields_ApplicationUsers] +GO +ALTER TABLE [dbo].[ExternalUserFields] WITH CHECK ADD CONSTRAINT [FK_ExternalUserFields_Entities] FOREIGN KEY([ExternalUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[ExternalUserFields] CHECK CONSTRAINT [FK_ExternalUserFields_Entities] +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] WITH CHECK ADD CONSTRAINT [FK_ExternalUsersAccessHistory_MatterEntities] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] CHECK CONSTRAINT [FK_ExternalUsersAccessHistory_MatterEntities] +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] WITH CHECK ADD CONSTRAINT [FK_ExternalUsersAccessHistory_UserEntities] FOREIGN KEY([ExternalUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] CHECK CONSTRAINT [FK_ExternalUsersAccessHistory_UserEntities] +GO +ALTER TABLE [dbo].[GlobalExceptions] WITH NOCHECK ADD CONSTRAINT [FK_GlobalExceptions_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[GlobalExceptions] CHECK CONSTRAINT [FK_GlobalExceptions_ApplicationUsers] +GO +ALTER TABLE [dbo].[GroupEntityLog] WITH CHECK ADD CONSTRAINT [FK_GroupEntityLog_Entities] FOREIGN KEY([GroupEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[GroupEntityLog] CHECK CONSTRAINT [FK_GroupEntityLog_Entities] +GO +ALTER TABLE [dbo].[HiddenMatterTeams] WITH CHECK ADD CONSTRAINT [FK_HiddenMatterTeams_Entities] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[HiddenMatterTeams] CHECK CONSTRAINT [FK_HiddenMatterTeams_Entities] +GO +ALTER TABLE [dbo].[InsidersReportFields] WITH CHECK ADD CONSTRAINT [FK_InsidersReportFields_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[InsidersReportFields] CHECK CONSTRAINT [FK_InsidersReportFields_EntityTypes] +GO +ALTER TABLE [dbo].[InsidersReportLogs] WITH CHECK ADD CONSTRAINT [FK_InsidersReportLogs_ApplicationUsers] FOREIGN KEY([ApplicationUserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[InsidersReportLogs] CHECK CONSTRAINT [FK_InsidersReportLogs_ApplicationUsers] +GO +ALTER TABLE [dbo].[InsidersReportLogs] WITH CHECK ADD CONSTRAINT [FK_InsidersReportLogs_Matters] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[InsidersReportLogs] CHECK CONSTRAINT [FK_InsidersReportLogs_Matters] +GO +ALTER TABLE [dbo].[InsidersReports] WITH CHECK ADD CONSTRAINT [FK_InsidersReports_Entities] FOREIGN KEY([MatterEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[InsidersReports] CHECK CONSTRAINT [FK_InsidersReports_Entities] +GO +ALTER TABLE [dbo].[Log] WITH CHECK ADD CONSTRAINT [FK_Log_ApplicationUsers] FOREIGN KEY([UserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Log] CHECK CONSTRAINT [FK_Log_ApplicationUsers] +GO +ALTER TABLE [dbo].[MatterAccessHistory] WITH CHECK ADD CONSTRAINT [FK_MatterAccessHistory_AccessHistory] FOREIGN KEY([AccessHistoryId]) +REFERENCES [dbo].[AccessHistory] ([AccessHistoryId]) +GO +ALTER TABLE [dbo].[MatterAccessHistory] CHECK CONSTRAINT [FK_MatterAccessHistory_AccessHistory] +GO +ALTER TABLE [dbo].[MatterAccessHistory] WITH CHECK ADD CONSTRAINT [FK_MatterAccessHistory_Entities] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterAccessHistory] CHECK CONSTRAINT [FK_MatterAccessHistory_Entities] +GO +ALTER TABLE [dbo].[MatterTeamExceptions] WITH CHECK ADD CONSTRAINT [FK_MatterTeamExceptions_Entities1] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamExceptions] CHECK CONSTRAINT [FK_MatterTeamExceptions_Entities1] +GO +ALTER TABLE [dbo].[MatterTeamExceptions] WITH CHECK ADD CONSTRAINT [FK_MatterTeamExceptions_Entities2] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamExceptions] CHECK CONSTRAINT [FK_MatterTeamExceptions_Entities2] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_MatterEntities] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_MatterEntities] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_MatterTeamHistoryActivityTypes] FOREIGN KEY([ActivityTypeId]) +REFERENCES [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_MatterTeamHistoryActivityTypes] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_MatterTeamRoles] FOREIGN KEY([RoleId]) +REFERENCES [dbo].[MatterTeamRole] ([RoleId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_MatterTeamRoles] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_UserEntities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_UserEntities] +GO +ALTER TABLE [dbo].[MatterTeamRole] WITH CHECK ADD CONSTRAINT [FK_MatterTeamRole_WallRoleId] FOREIGN KEY([WallRoleId]) +REFERENCES [dbo].[WallRoles] ([WallRoleId]) +GO +ALTER TABLE [dbo].[MatterTeamRole] CHECK CONSTRAINT [FK_MatterTeamRole_WallRoleId] +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] WITH CHECK ADD CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities1] FOREIGN KEY([MatterTeamId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] CHECK CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities1] +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] WITH CHECK ADD CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities2] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] CHECK CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities2] +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] WITH CHECK ADD CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities3] FOREIGN KEY([AdminEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] CHECK CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities3] +GO +ALTER TABLE [dbo].[NotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_NotificationAttachments_Attachments] FOREIGN KEY([AttachmentId]) +REFERENCES [dbo].[Attachments] ([AttachmentId]) +GO +ALTER TABLE [dbo].[NotificationAttachments] CHECK CONSTRAINT [FK_NotificationAttachments_Attachments] +GO +ALTER TABLE [dbo].[NotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_NotificationAttachments_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[NotificationAttachments] CHECK CONSTRAINT [FK_NotificationAttachments_Notifications] +GO +ALTER TABLE [dbo].[NotificationHistory] WITH CHECK ADD CONSTRAINT [FK_NotificationHistory_AttorneyAcknowledgments] FOREIGN KEY([AcknowledgmentId]) +REFERENCES [dbo].[AttorneyAcknowledgments] ([AcknowledgmentId]) +GO +ALTER TABLE [dbo].[NotificationHistory] CHECK CONSTRAINT [FK_NotificationHistory_AttorneyAcknowledgments] +GO +ALTER TABLE [dbo].[NotificationHistory] WITH CHECK ADD CONSTRAINT [FK_NotificationHistory_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[NotificationHistory] CHECK CONSTRAINT [FK_NotificationHistory_Entities] +GO +ALTER TABLE [dbo].[NotificationHistory] WITH CHECK ADD CONSTRAINT [FK_NotificationHistorys_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[NotificationHistory] CHECK CONSTRAINT [FK_NotificationHistorys_Notifications] +GO +ALTER TABLE [dbo].[NotificationRoles] WITH CHECK ADD CONSTRAINT [FK_NotificationRoles_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[NotificationRoles] CHECK CONSTRAINT [FK_NotificationRoles_WallAccessTypes] +GO +ALTER TABLE [dbo].[ObjectReleaseExceptions] WITH CHECK ADD CONSTRAINT [FK_ObjectReleaseExceptions_EntityId] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ObjectReleaseExceptions] CHECK CONSTRAINT [FK_ObjectReleaseExceptions_EntityId] +GO +ALTER TABLE [dbo].[ObjectTemplate] WITH CHECK ADD CONSTRAINT [FK_ObjectTemplate_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[ObjectTemplate] CHECK CONSTRAINT [FK_ObjectTemplate_ApplicationUsers] +GO +ALTER TABLE [dbo].[ObjectTemplate] WITH CHECK ADD CONSTRAINT [FK_ObjectTemplate_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[ObjectTemplate] CHECK CONSTRAINT [FK_ObjectTemplate_EntityTypes] +GO +ALTER TABLE [dbo].[PermanentInsidersAccessHistory] WITH CHECK ADD CONSTRAINT [FK_PermanentInsidersAccessHistory_UserEntities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[PermanentInsidersAccessHistory] CHECK CONSTRAINT [FK_PermanentInsidersAccessHistory_UserEntities] +GO +ALTER TABLE [dbo].[PolicyCategories] WITH CHECK ADD CONSTRAINT [FK_PolicyCategories_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[PolicyCategories] CHECK CONSTRAINT [FK_PolicyCategories_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_UserEntityId] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_UserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_AllowingWallId] FOREIGN KEY([AllowingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_AllowingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_UserEntityId] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_UserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_ConflictingWallId] FOREIGN KEY([ConflictingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_ConflictingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_AllowedUserEntityId] FOREIGN KEY([AllowedUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_AllowedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_DeniedUserEntityId] FOREIGN KEY([DeniedUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_DeniedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_AllowingWallId] FOREIGN KEY([AllowingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_AllowingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_AllowedUserEntityId] FOREIGN KEY([ConflictingUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_AllowedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_DeniedUserEntityId] FOREIGN KEY([DeniedUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_DeniedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_AllowingWallId] FOREIGN KEY([ConflictingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_AllowingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportFields] WITH CHECK ADD CONSTRAINT [FK_ReportFields_ReportTypes] FOREIGN KEY([ReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[ReportFields] CHECK CONSTRAINT [FK_ReportFields_ReportTypes] +GO +ALTER TABLE [dbo].[Reports] WITH CHECK ADD CONSTRAINT [FK_Reports_ApplicationUsers] FOREIGN KEY([UserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Reports] CHECK CONSTRAINT [FK_Reports_ApplicationUsers] +GO +ALTER TABLE [dbo].[Reports] WITH CHECK ADD CONSTRAINT [FK_Reports_ReportTypes] FOREIGN KEY([ReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[Reports] CHECK CONSTRAINT [FK_Reports_ReportTypes] +GO +ALTER TABLE [dbo].[ReportSchedules] WITH CHECK ADD CONSTRAINT [FK_ReportFields_Reports] FOREIGN KEY([ReportID]) +REFERENCES [dbo].[Reports] ([ReportId]) +GO +ALTER TABLE [dbo].[ReportSchedules] CHECK CONSTRAINT [FK_ReportFields_Reports] +GO +ALTER TABLE [dbo].[ReportsConflictingLatestUpdateDate] WITH CHECK ADD CONSTRAINT [FK_ReportsConflictingLatestUpdateDate_ReportTypes_ReportTypeId] FOREIGN KEY([ReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[ReportsConflictingLatestUpdateDate] CHECK CONSTRAINT [FK_ReportsConflictingLatestUpdateDate_ReportTypes_ReportTypeId] +GO +ALTER TABLE [dbo].[ReportTypes] WITH CHECK ADD CONSTRAINT [FK_ParentReportTypes_ReportTypes] FOREIGN KEY([ParentReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[ReportTypes] CHECK CONSTRAINT [FK_ParentReportTypes_ReportTypes] +GO +ALTER TABLE [dbo].[ReportTypes] WITH CHECK ADD CONSTRAINT [FK_ReportTypes_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[ReportTypes] CHECK CONSTRAINT [FK_ReportTypes_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[Repositories] WITH CHECK ADD CONSTRAINT [FK_Repositories_RepositoryTypes] FOREIGN KEY([RepositoryTypeId]) +REFERENCES [dbo].[RepositoryTypes] ([RepositoryTypeId]) +GO +ALTER TABLE [dbo].[Repositories] CHECK CONSTRAINT [FK_Repositories_RepositoryTypes] +GO +ALTER TABLE [dbo].[SCHEDULER_CRON_TRIGGERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_CRON_TRIGGERS_SCHEDULER_TRIGGERS] FOREIGN KEY([TRIGGER_NAME], [TRIGGER_GROUP]) +REFERENCES [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_CRON_TRIGGERS] CHECK CONSTRAINT [FK_SCHEDULER_CRON_TRIGGERS_SCHEDULER_TRIGGERS] +GO +ALTER TABLE [dbo].[SCHEDULER_JOB_LISTENERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_JOB_LISTENERS_SCHEDULER_JOB_DETAILS] FOREIGN KEY([JOB_NAME], [JOB_GROUP]) +REFERENCES [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_JOB_LISTENERS] CHECK CONSTRAINT [FK_SCHEDULER_JOB_LISTENERS_SCHEDULER_JOB_DETAILS] +GO +ALTER TABLE [dbo].[SCHEDULER_SIMPLE_TRIGGERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_SIMPLE_TRIGGERS_SCHEDULER_TRIGGERS] FOREIGN KEY([TRIGGER_NAME], [TRIGGER_GROUP]) +REFERENCES [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_SIMPLE_TRIGGERS] CHECK CONSTRAINT [FK_SCHEDULER_SIMPLE_TRIGGERS_SCHEDULER_TRIGGERS] +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGER_LISTENERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_TRIGGER_LISTENERS_SCHEDULER_TRIGGERS] FOREIGN KEY([TRIGGER_NAME], [TRIGGER_GROUP]) +REFERENCES [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGER_LISTENERS] CHECK CONSTRAINT [FK_SCHEDULER_TRIGGER_LISTENERS_SCHEDULER_TRIGGERS] +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_TRIGGERS_SCHEDULER_JOB_DETAILS] FOREIGN KEY([JOB_NAME], [JOB_GROUP]) +REFERENCES [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP]) +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGERS] CHECK CONSTRAINT [FK_SCHEDULER_TRIGGERS_SCHEDULER_JOB_DETAILS] +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] WITH CHECK ADD CONSTRAINT [FK_ScreeningLawyerKeyMap_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] CHECK CONSTRAINT [FK_ScreeningLawyerKeyMap_Entities] +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] WITH CHECK ADD CONSTRAINT [FK_ScreeningLawyerKeyMap_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] CHECK CONSTRAINT [FK_ScreeningLawyerKeyMap_Walls] +GO +ALTER TABLE [dbo].[SummaryDetails] WITH NOCHECK ADD CONSTRAINT [FK_SummaryDetails_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[SummaryDetails] CHECK CONSTRAINT [FK_SummaryDetails_Entities] +GO +ALTER TABLE [dbo].[SummaryDetails] WITH NOCHECK ADD CONSTRAINT [FK_SummaryDetails_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[SummaryDetails] CHECK CONSTRAINT [FK_SummaryDetails_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerActivities_Activities] FOREIGN KEY([ActivityId]) +REFERENCES [dbo].[Activities] ([ActivityId]) +GO +ALTER TABLE [dbo].[TrackerActivities] CHECK CONSTRAINT [FK_TrackerActivities_Activities] +GO +ALTER TABLE [dbo].[TrackerActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerActivities_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerActivities] CHECK CONSTRAINT [FK_TrackerActivities_Trackers] +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerClientsAndMatters_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] CHECK CONSTRAINT [FK_TrackerClientsAndMatters_Entities] +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerClientsAndMatters_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] CHECK CONSTRAINT [FK_TrackerClientsAndMatters_Trackers] +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerClientsAndMatters_TrackerSides] FOREIGN KEY([TrackerSideId]) +REFERENCES [dbo].[TrackerSides] ([TrackerSideId]) +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] CHECK CONSTRAINT [FK_TrackerClientsAndMatters_TrackerSides] +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionActivities_Activities] FOREIGN KEY([ActivityId]) +REFERENCES [dbo].[Activities] ([ActivityId]) +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] CHECK CONSTRAINT [FK_TrackerExecutionActivities_Activities] +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionActivities_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] CHECK CONSTRAINT [FK_TrackerExecutionActivities_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionClientsAndMatters_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] CHECK CONSTRAINT [FK_TrackerExecutionClientsAndMatters_Entities] +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionClientsAndMatters_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] CHECK CONSTRAINT [FK_TrackerExecutionClientsAndMatters_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionLibraries_Libraries] FOREIGN KEY([LibraryId]) +REFERENCES [dbo].[Repositories] ([RepositoryId]) +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] CHECK CONSTRAINT [FK_TrackerExecutionLibraries_Libraries] +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionLibraries_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] CHECK CONSTRAINT [FK_TrackerExecutionLibraries_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_Trackers] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_TrackerSides] FOREIGN KEY([TrackerSideId]) +REFERENCES [dbo].[TrackerSides] ([TrackerSideId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_TrackerSides] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_TrackerTypes] FOREIGN KEY([TrackerTypeId]) +REFERENCES [dbo].[TrackerTypes] ([TrackerTypeId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_TrackerTypes] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_Walls] FOREIGN KEY([LinkedPolicyId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_Walls] +GO +ALTER TABLE [dbo].[TrackerRepositories] WITH CHECK ADD CONSTRAINT [FK_ThresholdRepositories_Repositories] FOREIGN KEY([RepositoryId]) +REFERENCES [dbo].[Repositories] ([RepositoryId]) +GO +ALTER TABLE [dbo].[TrackerRepositories] CHECK CONSTRAINT [FK_ThresholdRepositories_Repositories] +GO +ALTER TABLE [dbo].[TrackerRepositories] WITH CHECK ADD CONSTRAINT [FK_TrackerRepositories_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerRepositories] CHECK CONSTRAINT [FK_TrackerRepositories_Trackers] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_ApplicationUsers] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_ApplicationUsers_Modifier] FOREIGN KEY([ModifierId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_ApplicationUsers_Modifier] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_TrackerTypes] FOREIGN KEY([TrackerTypeId]) +REFERENCES [dbo].[TrackerTypes] ([TrackerTypeId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_TrackerTypes] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_Walls] FOREIGN KEY([LinkedPolicyId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_Walls] +GO +ALTER TABLE [dbo].[TrackerSides] WITH CHECK ADD CONSTRAINT [FK_TrackerSides_Tracker] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerSides] CHECK CONSTRAINT [FK_TrackerSides_Tracker] +GO +ALTER TABLE [dbo].[TrackerSides] WITH CHECK ADD CONSTRAINT [FK_TrackerSides_WallSide] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[TrackerSides] CHECK CONSTRAINT [FK_TrackerSides_WallSide] +GO +ALTER TABLE [dbo].[TrackerTypes] WITH CHECK ADD CONSTRAINT [FK_TrackerTypes_TrackerCategories] FOREIGN KEY([TrackerCategoryId]) +REFERENCES [dbo].[TrackerCategories] ([TrackerCategoryId]) +GO +ALTER TABLE [dbo].[TrackerTypes] CHECK CONSTRAINT [FK_TrackerTypes_TrackerCategories] +GO +ALTER TABLE [dbo].[TrackerWatchList] WITH CHECK ADD CONSTRAINT [FK_ThresholdWatchList_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[TrackerWatchList] CHECK CONSTRAINT [FK_ThresholdWatchList_Entities] +GO +ALTER TABLE [dbo].[TrackerWatchList] WITH CHECK ADD CONSTRAINT [FK_TrackerWatchList_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerWatchList] CHECK CONSTRAINT [FK_TrackerWatchList_Trackers] +GO +ALTER TABLE [dbo].[TrackerWatchList] WITH CHECK ADD CONSTRAINT [FK_TrackerWatchList_TrackerSides] FOREIGN KEY([TrackerSideId]) +REFERENCES [dbo].[TrackerSides] ([TrackerSideId]) +GO +ALTER TABLE [dbo].[TrackerWatchList] CHECK CONSTRAINT [FK_TrackerWatchList_TrackerSides] +GO +ALTER TABLE [dbo].[UserActivityCounts] WITH CHECK ADD CONSTRAINT [FK_UserActivityCounts_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[UserActivityCounts] CHECK CONSTRAINT [FK_UserActivityCounts_Entities] +GO +ALTER TABLE [dbo].[UserActivityCounts] WITH CHECK ADD CONSTRAINT [FK_UserActivityCounts_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[UserActivityCounts] CHECK CONSTRAINT [FK_UserActivityCounts_TrackerExecutions] +GO +ALTER TABLE [dbo].[WallAccessTypes] WITH CHECK ADD CONSTRAINT [FK_WallAccessTypes_PolicyCategories] FOREIGN KEY([PolicyCategoryId]) +REFERENCES [dbo].[PolicyCategories] ([PolicyCategoryId]) +GO +ALTER TABLE [dbo].[WallAccessTypes] CHECK CONSTRAINT [FK_WallAccessTypes_PolicyCategories] +GO +ALTER TABLE [dbo].[WallCustomComboValues] WITH CHECK ADD CONSTRAINT [FK_WallCustomComboValues_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[WallCustomComboValues] CHECK CONSTRAINT [FK_WallCustomComboValues_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[WallCustomFieldConfig] WITH CHECK ADD CONSTRAINT [FK_WallCustomFieldConfig_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[WallCustomFieldConfig] CHECK CONSTRAINT [FK_WallCustomFieldConfig_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[WallExceptions] WITH NOCHECK ADD CONSTRAINT [FK_WallExceptions_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[WallExceptions] CHECK CONSTRAINT [FK_WallExceptions_ApplicationUsers] +GO +ALTER TABLE [dbo].[WallExceptions] WITH CHECK ADD CONSTRAINT [FK_WallExceptions_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[WallExceptions] CHECK CONSTRAINT [FK_WallExceptions_Entities] +GO +ALTER TABLE [dbo].[WallExceptions] WITH CHECK ADD CONSTRAINT [FK_WallExceptions_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[WallExceptions] CHECK CONSTRAINT [FK_WallExceptions_Walls] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [FK_Walls_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [FK_Walls_ApplicationUsers] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [FK_Walls_ApplicationUsers2] FOREIGN KEY([ModifierId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [FK_Walls_ApplicationUsers2] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [FK_Walls_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [FK_Walls_WallAccessTypes] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_Entities] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_WallRoleId] FOREIGN KEY([WallRoleId]) +REFERENCES [dbo].[WallRoles] ([WallRoleId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_WallRoleId] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_Walls] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_WallSides] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_WallSides] +GO +ALTER TABLE [dbo].[WallSides] WITH CHECK ADD CONSTRAINT [FK_WallSides_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[WallSides] CHECK CONSTRAINT [FK_WallSides_Walls] +GO +ALTER TABLE [dbo].[WidgetInstance] WITH CHECK ADD CONSTRAINT [FK_WidgetZoneWidgets_Widget] FOREIGN KEY([WidgetId]) +REFERENCES [dbo].[Widget] ([Id]) +GO +ALTER TABLE [dbo].[WidgetInstance] CHECK CONSTRAINT [FK_WidgetZoneWidgets_Widget] +GO +ALTER TABLE [dbo].[WidgetInstance] WITH CHECK ADD CONSTRAINT [FK_WidgetZoneWidgets_WidgetZone] FOREIGN KEY([WidgetZoneId]) +REFERENCES [dbo].[WidgetZone] ([Id]) +GO +ALTER TABLE [dbo].[WidgetInstance] CHECK CONSTRAINT [FK_WidgetZoneWidgets_WidgetZone] +GO +ALTER TABLE [dbo].[WidgetZone] WITH CHECK ADD CONSTRAINT [FK_WidgetZone_ApplicationUsers] FOREIGN KEY([UserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[WidgetZone] CHECK CONSTRAINT [FK_WidgetZone_ApplicationUsers] +GO +ALTER TABLE [dbo].[WidgetZone] WITH CHECK ADD CONSTRAINT [FK_WidgetZone_WidgetZoneType] FOREIGN KEY([WidgetZoneTypeId]) +REFERENCES [dbo].[WidgetZoneType] ([Id]) +GO +ALTER TABLE [dbo].[WidgetZone] CHECK CONSTRAINT [FK_WidgetZone_WidgetZoneType] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [CK_DigestNotifications] CHECK (([EmailAddress] IS NOT NULL OR [NotificationHistoryId] IS NOT NULL)) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [CK_DigestNotifications] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [CK_EntityToEntityRelationships] CHECK (([PrimaryEntityId]<>[SubordinateEntityId])) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [CK_EntityToEntityRelationships] +GO +ALTER TABLE [dbo].[MatterTeamRole] WITH NOCHECK ADD CONSTRAINT [CK_MatterTeamRole_CanRemoveUsers] CHECK (([CanRemoveUsers]=(0) OR [CanRemoveUsers]=(1) AND [IsAdmin]=(1))) +GO +ALTER TABLE [dbo].[MatterTeamRole] CHECK CONSTRAINT [CK_MatterTeamRole_CanRemoveUsers] +GO +ALTER TABLE [dbo].[MatterTeamRole] WITH NOCHECK ADD CONSTRAINT [CK_MatterTeamRole_IsDelegate] CHECK (([IsDelegate]=(0) OR [IsDelegate]=(1) AND [IsAdmin]=(1))) +GO +ALTER TABLE [dbo].[MatterTeamRole] CHECK CONSTRAINT [CK_MatterTeamRole_IsDelegate] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [CK_Walls_FoundationalGroupId] CHECK ((isnumeric([FoundationalGroupId])<>(1) OR CONVERT([int],[FoundationalGroupId])=[WallId])) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [CK_Walls_FoundationalGroupId] +GO +/****** Object: StoredProcedure [dbo].[usp_makeunicodecolumn] Script Date: 2/6/2018 1:34:19 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + +-- Register procedure +CREATE PROCEDURE [dbo].[usp_makeunicodecolumn] + @TABLE_NAME VARCHAR(50) = 0, -- name of table + @columnname VARCHAR(50) = 0, -- name of column + @indexname VARCHAR (50) = 0, -- name of index + @prevtype VARCHAR (50) = 'varchar', -- previous type name + @newtype VARCHAR (50) = 'nvarchar' -- new type name +AS +-- Check if this column doesn't need changes +IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=@TABLE_NAME AND COLUMN_NAME=@columnname AND DATA_TYPE = @prevtype) +BEGIN + DECLARE @IsNullable VARCHAR(10) + DECLARE @precision VARCHAR(10) + SET @IsNullable = '1' + + -- Get if this columns may NULL value, and length of column in chars + SELECT @IsNullable = IS_NULLABLE, @precision = CHARACTER_MAXIMUM_LENGTH FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=@TABLE_NAME AND COLUMN_NAME=@columnname AND DATA_TYPE = @prevtype + + DECLARE @tsql VARCHAR (200) + DECLARE @indexIsDroped BIT + SET @indexIsDroped = 0 + + -- DROP existing index + IF (LEN(@indexname) > 1) AND (EXISTS (SELECT INDEXPROPERTY(OBJECT_ID(@TABLE_NAME), @indexname, 'IndexID'))) + BEGIN + SET @tsql = 'DROP INDEX ' + @TABLE_NAME + '.' + @indexname + EXEC (@tsql) + SET @indexIsDroped = 1 + END + -- Change column with new datatype + SET @tsql = 'ALTER TABLE [' + @TABLE_NAME + '] ALTER COLUMN [' + @columnname + '] ' + @newtype + IF (@precision IS NOT NULL) + BEGIN + -- Truncate length of column + IF (@precision > 4000) + BEGIN + SET @precision = 4000 + DECLARE @tsql_truncate VARCHAR(255) + SET @tsql_truncate = 'UPDATE [' + @TABLE_NAME + '] SET ' + @columnname + ' = LEFT(' + @columnname + ', 4000) WHERE LEN(' + @columnname + ') > 4000' + EXEC (@tsql_truncate) + END + SET @tsql = @tsql + '(' + @precision + ')' + END + IF (@IsNullable = '0' OR @IsNullable = 'NO') + SET @tsql = @tsql + ' NOT NULL' + ELSE SET @tsql = @tsql + ' NULL' + EXEC (@tsql) + + -- Create index if it was deleted + IF (@indexIsDroped > 0) + BEGIN + SET @tsql = 'CREATE INDEX ' + @indexname + ' ON ' + @TABLE_NAME + '(' + @columnname + ') ' + EXEC (@tsql) + END +END +GO +USE [master] +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET READ_WRITE +GO diff --git a/modules/sqlserver_install/templates/script_walls_data.sql.erb b/modules/sqlserver_install/templates/script_walls_data.sql.erb new file mode 100644 index 0000000..c0e3c36 --- /dev/null +++ b/modules/sqlserver_install/templates/script_walls_data.sql.erb @@ -0,0 +1,1921 @@ +USE [<%=@sqlserverdbname%>] +GO + +SET IDENTITY_INSERT [dbo].[Activities] ON + +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (1, 1, N'Open', N'0', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (2, 1, N'View', N'1', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (3, 1, N'Check out', N'2', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (4, 1, N'Check in', N'3', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (5, 1, N'Changed Profile', N'4', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (6, 1, N'Close', N'5', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (7, 1, N'Create', N'6', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (8, 1, N'Create Version', N'7', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (9, 1, N'Change Security', N'8', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (10, 1, N'Copy', N'9', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (11, 1, N'Print', N'10', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (12, 1, N'Mail', N'11', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (13, 1, N'Delete', N'13', 2) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (14, 1, N'Release', N'17', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (15, 1, N'Export', N'18', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (16, 1, N'Modify', N'19', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (17, 1, N'Declared', N'22', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (18, 2, N'Create', N'1', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (19, 2, N'Print', N'3', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (20, 2, N'Delete Content', N'6', 2) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (21, 2, N'Check out', N'11', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (22, 2, N'Check in', N'12', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (23, 2, N'Copy', N'17', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (24, 2, N'Edit profile', N'20', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (25, 2, N'Change security', N'23', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (26, 2, N'Mail', N'30', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (27, 3, N'Accepted Invited', N'COLLABORATION_ACCEPT', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (28, 3, N'Changed user roles', N'COLLABORATION_ROLE_CHANGE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (29, 3, N'Copied', N'COPY', 1) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (30, 3, N'Deleted', N'DELETE', 2) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (31, 3, N'Downloaded', N'DOWNLOAD', 4) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (32, 3, N'Edited', N'EDIT', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (33, 3, N'Enabled shared links', N'SHARE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (34, 3, N'Extend collaborator expiration', N'UPDATE_COLLABORATION_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (35, 3, N'Extend shared link expiration', N'UPDATE_SHARE_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (36, 3, N'Invited', N'COLLABORATION_INVITE', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (37, 3, N'Locked', N'LOCK', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (38, 3, N'Moved', N'MOVE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (39, 3, N'Previewed', N'PREVIEW', 5) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (40, 3, N'Removed collaborators', N'COLLABORATION_REMOVE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (41, 3, N'Renamed', N'RENAME', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (42, 3, N'Set collaborator expiration', N'COLLABORATOR_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (43, 3, N'Set file auto-delete', N'STORAGE_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (44, 3, N'Set shared link expiration', N'SHARE_EXPIRATION', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (45, 3, N'Synched folder', N'ITEM_SYNC', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (46, 3, N'Undeleted', N'UNDELETE', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (47, 3, N'Unlocked', N'UNLOCK', 3) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (48, 3, N'Unshared links', N'UNSHARE', 6) +INSERT [dbo].[Activities] ([ActivityId], [RepositoryTypeId], [ActivityName], [ActivityRemoteLabel], [ActivityCategoryId]) VALUES (49, 3, N'Uploaded', N'UPLOAD', 1) +SET IDENTITY_INSERT [dbo].[Activities] OFF +SET IDENTITY_INSERT [dbo].[ActivityCategories] ON + +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (1, N'Content Create') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (2, N'Content Delete') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (3, N'Content Edit') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (4, N'Content Export') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (5, N'Content View') +INSERT [dbo].[ActivityCategories] ([ActivityCategoryId], [ActivityCategoryName]) VALUES (6, N'Profile Edit') +SET IDENTITY_INSERT [dbo].[ActivityCategories] OFF +SET IDENTITY_INSERT [dbo].[ApplicationRolesAT] ON + +INSERT [dbo].[ApplicationRolesAT] ([RoleId], [RoleName]) VALUES (1, N'Administrator') +INSERT [dbo].[ApplicationRolesAT] ([RoleId], [RoleName]) VALUES (2, N'Editor') +INSERT [dbo].[ApplicationRolesAT] ([RoleId], [RoleName]) VALUES (3, N'Read-Only') +SET IDENTITY_INSERT [dbo].[ApplicationRolesAT] OFF +SET IDENTITY_INSERT [dbo].[ApplicationRolesMTM] ON + +INSERT [dbo].[ApplicationRolesMTM] ([RoleId], [RoleName]) VALUES (1, N'Global Administrator') +INSERT [dbo].[ApplicationRolesMTM] ([RoleId], [RoleName]) VALUES (2, N'Editor') +INSERT [dbo].[ApplicationRolesMTM] ([RoleId], [RoleName]) VALUES (3, N'Read-Only') +SET IDENTITY_INSERT [dbo].[ApplicationRolesMTM] OFF +SET IDENTITY_INSERT [dbo].[ApplicationRolesWB] ON + +INSERT [dbo].[ApplicationRolesWB] ([RoleId], [RoleName]) VALUES (1, N'Administrator') +INSERT [dbo].[ApplicationRolesWB] ([RoleId], [RoleName]) VALUES (2, N'Editor') +INSERT [dbo].[ApplicationRolesWB] ([RoleId], [RoleName]) VALUES (3, N'Read-Only') +SET IDENTITY_INSERT [dbo].[ApplicationRolesWB] OFF +SET IDENTITY_INSERT [dbo].[ApplicationUsers] ON + +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (-1, 3, N'IntApp', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'IntApp', N'', 1, 0, CAST(N'2018-02-03T17:06:51.560' AS DateTime), CAST(N'2018-02-03T17:06:51.560' AS DateTime), NULL, 3, 3, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (1, 1, N'admin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Administrator', N'', 1, 0, CAST(N'2018-02-03T17:06:10.770' AS DateTime), CAST(N'2018-02-06T11:27:39.750' AS DateTime), CAST(N'2018-02-06T11:27:39.707' AS DateTime), 1, 1, 1) +SET IDENTITY_INSERT [dbo].[ApplicationUsers] OFF +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Client', N'Client') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Clients', N'Clients') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Entities', N'Entities') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Entity', N'Entity') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Group', N'Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Groups', N'Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Matter', N'Matter') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Matters', N'Matters') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Screening Lawyer', N'Screening Lawyer') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Side', N'Side') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Sides', N'Sides') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'User', N'User') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Users', N'Users') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Wall', N'Wall') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Walls', N'Walls') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Screening Lawyers', N'Screening Lawyers') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Client Group', N'Dynamic Client Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Client Groups', N'Dynamic Client Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Matter Group', N'Dynamic Matter Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Matter Groups', N'Dynamic Matter Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic User Group', N'Dynamic User Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic User Groups', N'Dynamic User Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Group', N'Dynamic Group') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Dynamic Groups', N'Dynamic Groups') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Unrestricted', N'Unrestricted') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Confidential', N'Confidential') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Restricted', N'Restricted') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Matter Team', N'Matter Team') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Matter Teams', N'Matter Teams') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Foundational', N'Foundational') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'External User', N'External User') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'External Users', N'External Users') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Legal Hold', N'Legal Hold') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Legal Holds', N'Legal Holds') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Policy', N'Policy') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Policies', N'Policies') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Supervisor', N'Supervisor') +INSERT [dbo].[CommonTerms] ([OriginalValue], [ReplacedValue]) VALUES (N'Supervisors', N'Supervisors') +SET IDENTITY_INSERT [dbo].[Config] ON + +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (7, N'AcknowledgmentConfigurableText', N'By clicking here, you confirm that you have read and acknowledged this ethical wall', NULL, N'Acknowledgments', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (9, N'DefaultSelfMaintainingPeriod', N'2', N'Y', N'Self-Maintaining', N'NumericAndDimension', N'{"values":["years", "months", "days", "hours"]}', N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (10, N'DefaultSelfMaintainingMinHours', N'5', NULL, N'Self-Maintaining', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (11, N'DefaultFromAddress', N'admin@firm.com', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (12, N'EnabledSelfMaintainingExclusionary', N'0', N'Self-Maintaining for Exclusionary Walls', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (13, N'EnabledAcknowledgments', N'0', N'Acknowledgments', N'Email', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (14, N'EnabledReports', N'1', N'Reports', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (15, N'EnabledNotifications', N'1', N'Notifications', N'Email', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (16, N'WallExceptionsAllowAllEntityTypes', N'0', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (17, N'DefaultNotificationText', N'You are receiving this notification because you have been added to the [Type] "[Name]". The details of this [Type] follow below.
[AllGeneralInformation]
[AllSideInformation]', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (18, N'RemoteIDField', N'EntityDisplayId', NULL, N'General', N'Select', N'{"values":["EntityRemoteSystemId", "CrmSystemId", "FinancialSystemId", "OpenSystemId", "RecordsSystemId", "TimeBuilderSystemId", "TimeEntrySystemId", "WindowsNetworkLogon", "EntityDisplayId"]}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (23, N'ExtensionServiceUsername', N'administrator', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (24, N'ExtensionServicePassword', N'', NULL, N'Extension Service', N'Password', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (25, N'SystemLogLevel', N'INFO', NULL, N'Logging', N'Select', N'{"values":["ERROR","WARNING", "INFO", "DEBUG"]}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (27, N'ExtensionServiceSecureClientMatterProgressFrequency', N'300', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (28, N'DM5::Username', N'', NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (29, N'DM5::Password', N'', NULL, N'DM5', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (31, N'Interwoven::Username', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (32, N'HostedWorksite::Password', N'', NULL, N'HostedWorksite', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (33, N'Interwoven::ForceUnlockDocuments', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (35, N'Interwoven::MaxRowsForSearch', N'9999', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (36, N'ClientMatterSeparatorChar', N'-', NULL, N'General', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (37, N'ExtensionServiceTimeout', N'180', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (38, N'IRM::Username', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (39, N'IRM::Password', N'', NULL, N'IRM', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (40, N'IRM::ClusterName', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (41, N'IRM::Domain', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (42, N'IRM::DefaultSecurityPolicy', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (43, N'IRM::MatterIDsUnique', N'0', NULL, N'IRM', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (44, N'LegalKEY::WebServiceUsername', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (45, N'LegalKEY::WebServicePassword', N'', NULL, N'LegalKEY', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (46, N'LegalKEY::WebServiceUrl', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (47, N'LegalKEY::LicenseKey', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (48, N'LegalKEY::LKUsername', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (49, N'LegalKEY::LKPassword', N'', NULL, N'LegalKEY', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (54, N'APIServiceUsername', N'administrator', NULL, N'API Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (55, N'APIServicePassword', N'', NULL, N'API Service', N'Password', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (56, N'InsidersHeaderLogo', N'images/Intapp_logo_RGB_small.png', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (57, N'InsidersHeaderText', N'Insiders List Generated in Compliance with the Market Abuse Regulation', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (58, N'InsidersHeaderFieldsXML', N'', NULL, N'Insiders', N'XML', N'{"schema":"InsidersHeaderFieldsXML.xsd"}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (59, N'InsidersDefaultAddReason', N'User added to wall for default reason', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (60, N'InsidersDefaultRemoveReason', N'User removed from wall for default reason', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (61, N'EnabledInsiders', N'0', N'Insiders', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (62, N'TimeKM::Username', N'', NULL, N'TimeKM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (63, N'TimeKM::Password', N'', NULL, N'TimeKM', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (64, N'TimeKM::Domain', N'', NULL, N'TimeKM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (65, N'TimeKM::WebServiceUrl', N'', NULL, N'TimeKM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (66, N'CMS::ConnectionString', N'', NULL, N'CMS', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (67, N'Interwoven::MaxRequestsPerSession', N'1000', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (68, N'LegalKEY::ApiType', N'', NULL, N'LegalKEY', N'Select', N'{"values":["", "OpenTextAPI", "SecureAccessAPI"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (69, N'LegalKEY::UseWallRank', N'1', NULL, N'LegalKEY', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (70, N'InternalAPIServiceUrl', N'', NULL, N'API Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (71, N'Mail::SMTPHost', N'', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (72, N'Mail::SMTPUsername', N'', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (73, N'Mail::SMTPPassword', N'', NULL, N'Notifications', N'Password', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (74, N'Mail::IsUseSSL', N'0', NULL, N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (75, N'Mail::MaxAttachmentSize', N'10485760', NULL, N'Notifications', N'Numeric', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (76, N'ConflictResolutionModel', N'Standard', NULL, N'General', N'Select', N'{"values":["Classic","Standard"]}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (77, N'SelfMaintainingCriteriaEnabledInclusionary', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (78, N'SelfMaintainingCriteriaEnabledExclusionary', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (79, N'EnabledSelfMaintainingInclusionary', N'0', N'Self-Maintaining for Inclusionary Walls', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (80, N'ShowAcknowledgmentExceptionColumn', N'0', N'Excepted from Acknowledgment', N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (81, N'Interwoven::LibraryXML', N'', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (82, N'DM5::LibraryXML', N'', NULL, N'DM5', N'XML', N'{"schema":"DM5LibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (83, N'SelfMaintainingIncludeTypist', N'0', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (84, N'WebView::PowerUserModel', N'WebViewGroups', NULL, N'WebView', N'Select', N'{"values":["WebViewGroups", "FirmAll"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (85, N'WebView::PowerUserGroupsXML', N'', NULL, N'WebView', N'XML', N'{"schema":"WebViewPowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (86, N'WebView::IncludeUnfinalizedTimeEntries', N'0', NULL, N'WebViewSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (87, N'EnabledDynamicGroupConfig', N'0', N'Dynamic Groups', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (88, N'LegalKEY::PowerUserGroupsXML', N'', NULL, N'LegalKEY', N'XML', N'{"schema":"LegalKEYPowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (89, N'LegalKEY::UseWallRank2ForSupersededSecurity', N'0', NULL, N'LegalKEY', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (90, N'Decisiv::Server', N'', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (91, N'Decisiv::Port', N'8080', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (92, N'Decisiv::Username', N'', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (93, N'Decisiv::Password', N'', NULL, N'Decisiv', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (94, N'Decisiv::OnlySecureMatters', N'0', NULL, N'Decisiv', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (95, N'Decisiv::ConnectionString', N'', NULL, N'Decisiv', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (96, N'EnabledExtendedValidation', N'0', N'Extended Validation', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (97, N'EnabledConflictResolutionValidation', N'1', N'Conflict Resolution Validation', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (98, N'DynamicUserGroupLimit', N'1000', N'Maximum Dynamic User Group Members', N'Dynamic Groups', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (99, N'DynamicMatterGroupLimit', N'1000', N'Maximum Dynamic Matter Group Members', N'Dynamic Groups', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (100, N'DynamicClientGroupLimit', N'500', N'Maximum Dynamic Client Group Members', N'Dynamic Groups', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (101, N'InterAction::ServerURL', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (102, N'InterAction::Username', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (103, N'InterAction::Password', N'', NULL, N'InterAction', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (104, N'InterAction::DefaultViewAccessLevel', N'5', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (105, N'InterAction::DefaultAccessXML', N' + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + false + false + false + false + true + false + true + false + false + false + false +', NULL, N'InterAction', N'XML', N'{"schema":"InterActionDefaultAccessXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (106, N'ValidationWarningDisplayLimit', N'100', N'Validation Warning Display Limit', N'Logging', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (107, N'CMS::EveryoneWorkGroupCode', N'EVERY', NULL, N'CMS', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (108, N'AcknowledgmentHyperlinkText', N'Click here to acknowledge this wall.', NULL, N'Acknowledgments', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (109, N'InterAction::WebServiceDomain', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (110, N'InterAction::WebServiceUsername', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (111, N'InterAction::WebServicePassword', N'', NULL, N'InterAction', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (112, N'Decisiv::PublicGroupDN', N'', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (113, N'Elite::ConnectionString', N'', NULL, N'Elite', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (114, N'Accutrac::ConnectionString', N'', NULL, N'Accutrac', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (115, N'FileSurf::ConnectionString', N'', NULL, N'FileSurf', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (116, N'EliteRecords::WallLogin', N'sa', NULL, N'EliteRecords', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (117, N'SharePoint::Username', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (118, N'SharePoint::Password', N'', NULL, N'SharePoint', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (119, N'SharePoint::Domain', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (120, N'SharePoint::WallsUserRights', N'WebDesigner', NULL, N'SharePoint', N'Select', N'{"values":["WebDesigner", "Contributor", "Reader", "Administrator"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (121, N'Omnia::LibraryXML', N'', NULL, N'OmniaSelfMaintaining', N'XML', N'{"schema":"OmniaLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (122, N'Elite3E::IncludePendingTimeEntries', N'', NULL, N'Elite3ESelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (123, N'BizTalk::MatterIDsUnique', N'0', NULL, N'BizTalk', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (124, N'BizTalk::SupportsContractorSecurity', N'0', NULL, N'BizTalk', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (127, N'BizTalk::Domain', N'', NULL, N'BizTalk', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (129, N'BizTalk::ItineraryXML', N'', NULL, N'BizTalk', N'XML', N'{"schema":"BizTalkItineraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (130, N'SecurityGroupIDDelimiter', N'_', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (131, N'SecurityGroupIDPrefix', N'ZZINT_', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (132, N'SecurityGroupNamePrefix', N'IntApp Security Group for', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (133, N'ContractorSecurityGroupIDPrefix', N'YYINT_', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (134, N'ContractorSecurityGroupNamePrefix', N'IntApp Contractor Security Group for', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (135, N'DMSNotifySecurityBreacher', N'1', NULL, N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (136, N'DMSSecurityBreachEmails', NULL, NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (137, N'DM5::MasterLibrary', N'', NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (138, N'DM5::InterfaceType', N'DirectSQL', NULL, N'DM5', N'Select', N'{"values":["DirectSQL", "DM5API"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (139, N'DM5::MonitoredActivityTypeXML', N'12023', NULL, N'DM5', N'XML', N'{"schema":"DM5MonitoredActivityTypeXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (141, N'Interwoven::GrantAccessRight', N'3', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (142, N'Interwoven::MasterLibrary', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (143, N'Interwoven::MonitoredActivityTypeXML', N'7468', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenMonitoredActivityTypeXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (144, N'Accutrac::IsActive', N'0', NULL, N'Accutrac', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (145, N'BizTalk::IsActive', N'0', NULL, N'BizTalk', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (146, N'CarpeDiemSelfMaintaining::IsActive', N'0', NULL, N'CarpeDiemSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (147, N'CMS::IsActive', N'0', NULL, N'CMS', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (148, N'CMSSelfMaintaining::IsActive', N'0', NULL, N'CMSSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (149, N'Decisiv::IsActive', N'0', NULL, N'Decisiv', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (150, N'DM5::IsActive', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (151, N'DM5SelfMaintaining::IsActive', N'0', NULL, N'DM5SelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (152, N'EliteRecords::IsActive', N'0', NULL, N'EliteRecords', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (153, N'Elite3ESelfMaintaining::IsActive', N'0', NULL, N'Elite3ESelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (154, N'FileSurf::IsActive', N'0', NULL, N'FileSurf', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (155, N'InterAction::IsActive', N'0', NULL, N'InterAction', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (156, N'Interwoven::IsActive', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (157, N'InterwovenSelfMaintaining::IsActive', N'0', NULL, N'InterwovenSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (158, N'IRM::IsActive', N'0', NULL, N'IRM', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (159, N'LegalKEY::IsActive', N'0', NULL, N'LegalKEY', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (160, N'OmniaSelfMaintaining::IsActive', N'0', NULL, N'OmniaSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (161, N'SharePoint::IsActive', N'0', NULL, N'SharePoint', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (162, N'TimeKM::IsActive', N'0', NULL, N'TimeKM', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (163, N'WebView::IsActive', N'0', NULL, N'WebView', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (164, N'WebViewSelfMaintaining::IsActive', N'0', NULL, N'WebViewSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (165, N'MessageBus::ReceiverXML', N'IntAppExtensionServiceQueue@<%=@webappserver%>', NULL, N'Extension Service', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (166, N'ExtensionServiceMaxRetryAttempts', N'10000', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (167, N'ExtensionServiceRetryInterval', N'300', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (168, N'ExtensionServiceDeleteFinishedJobs', N'1', NULL, N'Extension Service', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (169, N'ExtensionServiceSendAuditEmailIfNoRepairs', N'0', NULL, N'Extension Service', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (170, N'ExtensionServiceAuditEmails', N'', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (171, N'ExtensionServiceSQLTimeout', N'3600', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (172, N'DM5::DocExceptionsTable', NULL, NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (173, N'Interwoven::DocExceptionsColumn', NULL, NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (174, N'Accutrac::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Accutrac', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (175, N'BizTalk::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'BizTalk', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (176, N'CarpeDiemSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'CarpeDiemSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (177, N'CMS::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'CMS', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (178, N'CMSSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'CMSSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (179, N'Decisiv::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Decisiv', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (180, N'DM5::IncrementalRepairCronExpression', N'0 0/5 * * * ?', NULL, N'DM5', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (181, N'DM5::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'DM5', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (182, N'DM5SelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'DM5SelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (183, N'EliteRecords::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'EliteRecords', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (184, N'Elite3ESelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'Elite3ESelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (185, N'FileSurf::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'FileSurf', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (186, N'InterAction::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'InterAction', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (187, N'Interwoven::IncrementalRepairCronExpression', N'0 0/5 * * * ?', NULL, N'Interwoven', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (188, N'Interwoven::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Interwoven', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (189, N'InterwovenSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'InterwovenSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (190, N'IRM::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'IRM', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (191, N'LegalKEY::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (192, N'OmniaSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'OmniaSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (193, N'SharePoint::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'SharePoint', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (194, N'TimeKM::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'TimeKM', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (195, N'WebView::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'WebView', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (196, N'WebViewSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'WebViewSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (197, N'DefaultAccessGroup', N'', NULL, N'General', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (198, N'DM5::ContractorsGroup', N'', NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (199, N'DTESelfMaintaining::IsActive', N'0', NULL, N'DTESelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (200, N'DTESelfMaintaining::LibraryXML', N'', NULL, N'DTESelfMaintaining', N'XML', N'{"schema":"DTELibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (201, N'DTESelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'DTESelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (202, N'SharePoint::SecureDocumentsWithUniquePermissions', N'1', NULL, N'SharePoint', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (203, N'SharePoint::IgnoredUsersAndGroupsRegex', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (204, N'DTEAxiom::IsActive', N'0', NULL, N'DTEAxiom', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (205, N'DTEAxiom::LibraryXML', N'', NULL, N'DTEAxiom', N'XML', N'{"schema":"DTEAxiomLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (206, N'DTEAxiom::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'DTEAxiom', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (207, N'DefaultMTMMatterVisibility', N'3', NULL, N'Matter Team Manager', N'Select', N'{"values":["1", "2", "3", "4"]}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (208, N'DefaultMTMWallVisibility', N'3', NULL, N'Matter Team Manager', N'Select', N'{"values":["1", "2", "3", "4", "5"]}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (209, N'EnabledMTMNotifications', N'0', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (210, N'MTMApplicationUrl', N'http://<%=@hostname%>/MatterTeamManager/', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (211, N'DM5::DocumentsPerChunk', N'500', NULL, N'DM5', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (212, N'Interwoven::DocumentsPerChunk', N'500', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (213, N'Mail::SMTPTimeout', N'600', NULL, N'Notifications', N'Numeric', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (214, N'TimeKM::SetRestrictedSecurity', N'0', NULL, N'TimeKM', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (215, N'EnabledAddMatterTeamButtonExclusionary', N'0', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (216, N'EnabledSelfMaintainingMatterTeams', N'0', N'Self-Maintaining for Matter Teams', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (217, N'EnabledSelfMaintainingForMatterAdmins', N'1', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (218, N'DefaultMatterTeamRole', N'', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (219, N'SelfMaintainingCriteriaEnabledMatterTeams', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (220, N'EnabledLimitedAccessValidation', N'0', N'Limited Access Validation', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (221, N'GenericTimeEntrySelfMaintaining::LibraryXML', N'', N'', N'GenericTimeEntrySelfMaintaining', N'XML', N'{"schema":"GenericTimeEntrySelfMaintainingLibraryXML.xsd"}', N'Extensions') +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (222, N'GenericTimeEntrySelfMaintaining::IsActive', N'0', N'', N'GenericTimeEntrySelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (223, N'GenericTimeEntrySelfMaintaining::CronExpression', N'0 30 0 * * ?', N'', N'GenericTimeEntrySelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (224, N'GenericTimeEntrySelfMaintaining::RemoteIDSource', N'TimeEntry', N'', N'GenericTimeEntrySelfMaintaining', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (225, N'GenericDMSSelfMaintaining::LibraryXML', N'', N'', N'GenericDMSSelfMaintaining', N'XML', N'{"schema":"GenericDMSSelfMaintainingLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (226, N'GenericDMSSelfMaintaining::IsActive', N'0', N'', N'GenericDMSSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (227, N'GenericDMSSelfMaintaining::CronExpression', N'0 30 0 * * ?', N'', N'GenericDMSSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (228, N'GenericDMSSelfMaintaining::UseDateRange', N'0', N'', N'GenericDMSSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (229, N'BizTalk::IncludeLimitedAccessUsers', N'0', NULL, N'BizTalk', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (230, N'NetDocuments::IsActive', N'0', NULL, N'NetDocuments', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (241, N'NetDocuments::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'NetDocuments', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (242, N'NetDocuments::AdminEmail', N'', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (243, N'SharePoint::ConnectionString', N'', NULL, N'SharePoint', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (244, N'SharePoint::InterfaceType', N'ClientObjectModel', NULL, N'SharePoint', N'Select', N'{"values":["ClientObjectModel", "HttpModule"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (245, N'SharePoint::WallsContractorRights', N'WebDesigner', NULL, N'SharePoint', N'Select', N'{"values":["WebDesigner", "Contributor", "Reader", "Administrator"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (246, N'SharePoint::MaxOperationsPerRequest', N'100', NULL, N'SharePoint', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (249, N'BizTalk::WebServiceTimeout', N'100', NULL, N'BizTalk', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (250, N'Interwoven::EnabledUTC', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (251, N'EnabledCustomNotificationObjects', N'0', NULL, N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (252, N'EnabledAutoAddMatterTeams', N'0', N'Auto Adding Matter Teams', N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (253, N'SharePoint::AccessDeniedURL', N'/_layouts/AccessDenied.aspx', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (254, N'SharePoint::HttpModuleInclusionaryModel', N'Standard', NULL, N'SharePoint', N'Select', N'{"values":["Standard", "HttpModuleOnly"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (255, N'SharePoint::CacheRefreshInterval', N'600', NULL, N'SharePoint', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (257, N'EnabledObjectReleaseExceptions', N'0', N'Object Release Exceptions', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (258, N'ObjectReleaseExceptionsDefaultDuration', N'0', NULL, N'Object Exceptions', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (259, N'ObjectReleaseExceptionsEmails', N'', NULL, N'Object Exceptions', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (260, N'ObjectReleaseExceptionsEmailUserCreatingException', N'1', NULL, N'Object Exceptions', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (261, N'ObjectReleaseExceptionsEmailUserGrantedAccess', N'1', NULL, N'Object Exceptions', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (262, N'SecurityGroupIDPermissionLevelDelimiter', N'.', NULL, N'Extension Service', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (263, N'Interwoven::PermissionsXML', N' + + READ + 1 + 1 + + + READWRITE + 2 + 2 + + + FULLACCESS + 3 + 3 + +', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenPermissionsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (264, N'DM5::PermissionsXML', N' +', NULL, N'DM5', N'XML', N'{"schema":"DM5PermissionsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (265, N'Interwoven::IgnoredDocumentTypesXML', N' +', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenIgnoredDocumentTypesXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (266, N'DM5::IgnoredDocumentTypesXML', N' +', NULL, N'DM5', N'XML', N'{"schema":"DM5IgnoredDocumentTypesXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (267, N'DTEAxiomSelfMaintaining::IsActive', N'0', NULL, N'DTEAxiomSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (268, N'DTEAxiomSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'DTEAxiomSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (269, N'iManage::PluginSettingsUpdateInterval', N'24', NULL, N'Plugins', N'Numeric', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (270, N'iManage::MTMLauncherMenuText', N'Manage Matter Team', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (271, N'iManage::MTMLauncherMenuPosition', N'0', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (272, N'iManage::SecurityValidationSecurityChangeText', N'Security change', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (273, N'iManage::SecurityValidationViolationText', N'is in violation of wall', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (274, N'iManage::SecurityValidationViolationTextPlural', N'is in violation of walls', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (275, N'iManage::SecurityValidationPublicPrivateText', N'You are attempting to make information public in violation of a confidentiality policy. The security changes have been automatically reversed.', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (276, N'iManage::SecurityValidationSecurityErrorText', N'You are attempting to grant access to individuals in violation of an ethical wall or confidentiality policy. The security changes have been automatically reversed.', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (277, N'iManage::SecurityValidationRemoveViolatingText', N'You are attempting to grant access to individuals in violation of an ethical wall. You may remove the users in violation or cancel all security changes.', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (278, N'iManage::SecurityValidationReleaseExceptionText', N'You are attempting to grant access to individuals in violation of a confidentiality policy. If you choose to proceed, you should be sure they have a legitimate and urgent need to access this information.', NULL, N'Plugins', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (279, N'DMSNotifySecurityBreachee', N'0', NULL, N'Notifications', N'Boolean', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (280, N'Interwoven::DisableInclusionaryType', N'Standard', NULL, N'Interwoven', N'Select', N'{"values":["Standard", "Preserve"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (281, N'DM5::DisableInclusionaryType', N'Standard', NULL, N'DM5', N'Select', N'{"values":["Standard", "Preserve"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (282, N'FileShare::IsActive', N'0', NULL, N'FileShare', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (283, N'FileShare::Structure', N'Hierarchical', NULL, N'FileShare', N'Select', N'{"values":["Hierarchical", "Flat"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (284, N'FileShare::UserName', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (285, N'FileShare::Password', N'', NULL, N'FileShare', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (286, N'FileShare::WatchSecurityEvents', N'1', NULL, N'FileShare', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (287, N'FileShare::RootDirectoryXML', N' + + exampleshare + +\\servername\exampleshare + + [0-9]{5})]]> + [0-9]{4})]]> + FullControl + Modify +Read + + + INTAPP\ITStaff + FullControl + + + + + + FullControl + Modify +Read + + +', NULL, N'FileShare', N'XML', N'{"schema":"FileShareRootDirectoryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (288, N'FileShare::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'FileShare', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (289, N'FileShare::IncrementalRepairCronExpression', N'0 0/5 * * * ?', NULL, N'FileShare', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (291, N'ActivityRetentionDays', N'90', NULL, N'Activity Tracker', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (292, N'ActivityTrackerApplicationURL', N'http://', NULL, N'Activity Tracker', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (293, N'ThresholdMaxAlerts', N'250', NULL, N'Activity Tracker', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (294, N'SharePoint::ClientPropertyName', N'Client', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (295, N'SharePoint::MatterPropertyName', N'Matter', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (296, N'DM5::UseShortSecurityGroupID', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (297, N'FileSurf::UseShortSecurityGroupID', N'0', NULL, N'FileSurf', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (298, N'LegalKEYAdverseParties::IsActive', N'0', NULL, N'LegalKEYAdverseParties', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (299, N'LegalKEYAdverseParties::CodesXML', N'', NULL, N'LegalKEYAdverseParties', N'XML', N'{"schema":"LegalKEYAdversePartiesCodesXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (300, N'LegalKEYAdverseParties::CronExpression', N'0 30 1 * * ?', NULL, N'LegalKEYAdverseParties', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (301, N'Accutrac::AuditEmails', N'', NULL, N'Accutrac', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (302, N'BizTalk::AuditEmails', N'', NULL, N'BizTalk', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (303, N'CMS::AuditEmails', N'', NULL, N'CMS', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (304, N'Decisiv::AuditEmails', N'', NULL, N'Decisiv', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (305, N'DM5::AuditEmails', N'', NULL, N'DM5', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (306, N'DTEAxiom::AuditEmails', N'', NULL, N'DTEAxiom', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (307, N'EliteRecords::AuditEmails', N'', NULL, N'EliteRecords', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (308, N'FileShare::AuditEmails', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (309, N'FileSurf::AuditEmails', N'', NULL, N'FileSurf', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (310, N'InterAction::AuditEmails', N'', NULL, N'InterAction', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (311, N'Interwoven::AuditEmails', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (312, N'IRM::AuditEmails', N'', NULL, N'IRM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (313, N'LegalKEY::AuditEmails', N'', NULL, N'LegalKEY', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (314, N'NetDocuments::AuditEmails', N'', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (315, N'SharePoint::AuditEmails', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (316, N'TimeKM::AuditEmails', N'', NULL, N'TimeKM', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (317, N'WebView::AuditEmails', N'', NULL, N'WebView', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (318, N'NetDocuments::IgnoredDocumentTypesXML', N' +', NULL, N'NetDocuments', N'XML', N'{"schema":"NetDocumentsIgnoredDocumentTypesXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (321, N'SharePoint::AccessDeniedURLAppendRedirect', N'1', NULL, N'SharePoint', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (322, N'DM5::GrantAuthorAccess', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (323, N'DM5::GrantTypistAccess', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (324, N'MTMInactiveMemberAdditionText', N'User {username} will be added in an inactive state due to an existing wall.', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (325, N'MTMInactiveMemberHoverText', N'This matter team member is inactive because the user is excluded from the matter by an existing wall.', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (326, N'Interwoven::UpdateDocHistory', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (327, N'DM5::UpdateActivityLog', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (328, N'Interwoven::SecurityBreachIgnoredUsersXML', N'', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenSecurityBreachIgnoredUsersXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (329, N'DM5::SecurityBreachIgnoredUsersXML', N'', NULL, N'DM5', N'XML', N'{"schema":"DM5SecurityBreachIgnoredUsersXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (330, N'FileShare::ExceptedFoldersRegex', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (331, N'UserNotificationObjectSortColumn', N'', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (332, N'Interwoven::AllowExternalUsersAndGroups', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (333, N'EliteRecords::PowerUsersXML', N'', NULL, N'EliteRecords', N'XML', N'{"schema":"EliteRecordsPowerUsersXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (334, N'IsLinqLoggingEnabled', N'0', NULL, N'Logging', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (335, N'WBApplicationURL', N'http://<%=@webappserver%>/<%=@wbapplicationwebsitename%>/', NULL, N'General', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (336, N'Interwoven::SecureWorkspacesAndFolders', N'1', N'Interwoven Workspace Security', N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (337, N'EnabledObjectConfinementExceptions', N'0', N'Object Confinement Exceptions', N'Features', N'ComponentSwitcher', NULL, NULL) +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (338, N'EnabledMTMFeaturesInWB', N'1', N'MTM Features in Intapp Walls', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (339, N'EnabledActivityTrackerApplication', N'0', N'Activity Tracker', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (340, N'EnabledMTMApplication', N'1', N'Matter Team Manager', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (341, N'EnabledWBApplication', N'1', N'Intapp Walls', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (342, N'WallsDB::SQLTimeout', N'120', NULL, N'General', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (343, N'SystemLog::MaximumRows', N'500000', NULL, N'Logging', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (344, N'IRM::LibraryXML', N'', NULL, N'IRM', N'XML', N'{"schema":"IRMLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (345, N'ExtensionServiceConfigXML', N'', NULL, N'Extension Service', N'XML', N'{"schema":"ExtensionServiceConfigXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (346, N'CarpeDiem::IncludeUnfinalizedTimeEntries', N'0', NULL, N'CarpeDiemSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (347, N'CMS::IncludeUnfinalizedTimeEntries', N'0', NULL, N'CMSSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (348, N'DTESelfMaintaining::IncludeUnfinalizedTimeEntries', N'0', NULL, N'DTESelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (349, N'DTEAxiom::IncludeUnfinalizedTimeEntries', N'0', NULL, N'DTEAxiomSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (350, N'Interwoven::LastRepairSecondsToOverlap', N'0', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (351, N'FileShare::ConnectionString', N'', NULL, N'FileShare', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (352, N'Interwoven::IgnoredDocumentsXML', N' +', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenIgnoredDocumentsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (353, N'ProLaw::IsActive', N'0', NULL, N'ProLaw', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (354, N'ProLaw::LibraryXML', N'', NULL, N'ProLaw', N'XML', N'{"schema":"ProLawLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (355, N'ProLaw::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'ProLaw', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (356, N'Interwoven::IgnoredGroupName', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (357, N'TimeBuilder::IsActive', N'0', NULL, N'TimeBuilder', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (358, N'TimeBuilder::LibraryXML', N'', NULL, N'TimeBuilder', N'XML', N'{"schema":"TimeBuilderLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (359, N'TimeBuilder::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'TimeBuilder', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (360, N'Decisiv::IsLegacyVersion', N'0', NULL, N'Decisiv', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (361, N'EnabledLegalHolds', N'0', N'Legal Holds', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (366, N'LegalHoldsAcknowledgmentConfigurableText', N'By clicking here, you confirm that you have read and acknowledged this hold', NULL, N'Acknowledgments', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (367, N'LegalHoldsAcknowledgmentHyperlinkText', N'Click here to acknowledge this hold.', NULL, N'Acknowledgments', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (368, N'LegalHolds::DefaultSelfMaintainingMinHours', N'5', NULL, N'Legal Holds', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (369, N'EnabledSelfMaintainingLegalHolds', N'0', N'Self-Maintaining for Legal Holds', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (370, N'SelfMaintainingCriteriaEnabledLegalHolds', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (371, N'EnabledRelationshipPairing', N'0', N'Relationship Pairing', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (372, N'EnabledRelationshipPairingForMatterTeams', N'0', N'Relationship Pairing for Matter Teams', N'Features', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (373, N'PairedMatterTeamRole', N'', N'The MTM role ID to assign to subordinate entity when their attorneys are added to the "members" side of a matter team', N'Relationship Pairing', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (374, N'PairedMatterTeamAdminRole', N'', N'The MTM admin role ID to assign to subordinate entity when their attorneys are added to the "administrators" side of a matter team', N'Relationship Pairing', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (375, N'PairedRelationshipID', N'', N'The Id that is used to define the "attorney-secretary" relationship', N'Relationship Pairing', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (376, N'PairedWallRole', N'', N'The wall role ID to assign to secretaries when their attorneys are added to a wall', N'Relationship Pairing', N'Text', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (377, N'CarpeDiem::LibraryXML', N'', NULL, N'CarpeDiem', N'XML', N'{"schema":"CarpeDiemLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (378, N'UseMultiValuedFinancialUserIDs', N'0', NULL, N'Extension Service', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (381, N'EnabledWallsAndSecurity', N'1', N'Walls and Security', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (382, N'Interwoven::SecureLegalHolds', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (384, N'DM5::SecureLegalHolds', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (385, N'Interwoven::UpdateLegalHoldDocHistory', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (386, N'DM5::UpdateLegalHoldActivityLog', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (387, N'MatterTeamSubscriptionType', N'', NULL, N'Matter Team Manager', N'Select', N'{"values":["","OFF", "AUTO", "REQUEST"]}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (388, N'MatterTeamSubscriptionRequestHeaderText', N'Please review the following matter team access request:', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (389, N'MatterTeamSubscriptionDenyRequestHyperlinkText', N'Deny Request', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (390, N'MatterTeamSubscriptionApproveRequestHyperlinkText', N'Approve Request', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (391, N'MatterTeamSubscriptionRequestInterval', N'1440', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (392, N'EnabledDigestNotifications', N'0', N'Digest Notifications', N'Email', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (393, N'SendDigestNotificationsCronExpression', N'0 0 1 ? * SAT', NULL, N'Digest Notifications', N'Cron expression', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (394, N'DigestSubject', N'Intapp Walls Digest Notification', NULL, N'Digest Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (395, N'WebViewTimekeeper::IsActive', N'0', NULL, N'WebViewTimekeeper', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (396, N'WebViewTimekeeper::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'WebViewTimekeeper', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (397, N'WebViewTimekeeper::ExclusionarySecurity', N'0', NULL, N'WebViewTimekeeper', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (398, N'Interwoven::LegalHoldColumn', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (399, N'TimeBuilderSelfMaintaining::IsActive', N'0', NULL, N'TimeBuilderSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (400, N'TimeBuilderSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'TimeBuilderSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (401, N'TimeBuilderSelfMaintaining::IncludeUnfinalizedTimeEntries', N'0', NULL, N'TimeBuilderSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (402, N'ExecuteTrackersCronExpression', N'0 0/5 * * * ?', NULL, N'Activity Tracker', N'Cron expression', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (403, N'ExtensionServiceMaxRepairsInAuditEmail', N'100000', NULL, N'Extension Service', N'Numeric', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (404, N'EnabledSelfMaintainingDateRange', N'1', NULL, N'Self-Maintaining', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (405, N'DefaultMTMSelfMaintainingIntervalType', N'Fixed Lookback And Ongoing', NULL, N'Matter Team Manager', N'Select', N'{"values":["Fixed Lookback And Ongoing", "Ongoing Only", "All Past Only", "Fixed Lookback Only", "No Default"]}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (406, N'CarpeDiem::SecureChar', N'R', NULL, N'CarpeDiem', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (407, N'CarpeDiem::IsActive', N'0', NULL, N'CarpeDiem', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (408, N'CarpeDiem::AuditEmails', N'', NULL, N'CarpeDiem', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (409, N'Interwoven::ContractorGrantAccessRight', N'3', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (410, N'CarpeDiem::ActiveChar', N'A', NULL, N'CarpeDiem', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (411, N'CMS::IsLegacyVersion', N'1', NULL, N'CMS', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (412, N'CarpeDiem::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'CarpeDiem', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (413, N'Generic::IsActive', N'0', NULL, N'Generic', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (414, N'Generic::LibraryXML', N'', NULL, N'Generic', N'XML', N'{"schema":"GenericLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (415, N'Generic::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Generic', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (416, N'Generic::EntityRemoteIDSource', N'DMS', NULL, N'Generic', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (417, N'Generic::UserRemoteIDSource', N'DMS', NULL, N'Generic', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (418, N'CarpeDiem::DummyUser', N'', NULL, N'CarpeDiem', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (419, N'Interwoven::RepairGrantAccessRight', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (420, N'Interwoven::RepairContractorGrantAccessRight', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (421, N'FileShare::UseActiveDirectorySecurityGroups', N'0', NULL, N'FileShare', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (422, N'FileShare::DomainControllerAddress', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (423, N'FileShare::ActiveDirectoryUserName', N'', NULL, N'FileShare', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (424, N'FileShare::ActiveDirectoryPassword', N'', NULL, N'FileShare', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (426, N'ImportActivityBeforeTrackerExecution', N'1', NULL, N'Activity Tracker', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (427, N'ImportActivityCronExpression', N'0 30 2 * * ?', NULL, N'Activity Tracker', N'Cron expression', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (428, N'AppVersion', N'6.2.2002.5', NULL, N'General', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (429, N'ActivityRetentionPolicyCronExpression', N'0 0 2 * * ?', NULL, N'Activity Tracker', N'Cron expression', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (431, N'Box::IsActive', N'0', NULL, N'Box', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (432, N'Box::ClientMatterRegex', N'.*ID:(?[0-9]{5})-(?[0-9]{4}).*|.*ID:(?[0-9]{5}).*', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (433, N'Box::ApiKey', N'jjlj1vfxv50z6na834hrk6n7sfatu4tb', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (435, N'NetDocuments::CabinetsXML', N'VESVES00', NULL, N'NetDocuments', N'XML', N'{"schema":"NetDocumentsCabinetsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (436, N'DefaultAlertThresholdLimit', N'0', NULL, N'Activity Tracker', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (437, N'SharePoint::EnabledClaimsAuthentication', N'0', NULL, N'SharePoint', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (438, N'Interwoven::IgnoredWorkspacesAndFoldersXML', N'', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenIgnoredWorkspacesAndFoldersXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (439, N'EnabledWallExpirationDate', N'1', NULL, N'General', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (440, N'EnabledWallEffectiveDate', N'1', NULL, N'General', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (441, N'Interwoven::PowerUserGroupsXML', N'', NULL, N'Interwoven', N'XML', N'{"schema":"InterwovenPowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (442, N'Elite3E::Username', N'', NULL, N'Elite3E', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (443, N'Elite3E::Password', N'', NULL, N'Elite3E', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (444, N'Elite3E::Domain', N'', NULL, N'Elite3E', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (445, N'Elite3E::WebServiceUrl', N'', NULL, N'Elite3E', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (446, N'Elite3E::CommentText', N'MANAGED BY WALL BUILDER', NULL, N'Elite3E', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (447, N'Elite3EEthicalWalls::AdminUser', N'', NULL, N'Elite3EEthicalWalls', N'Text', NULL, N'Extensions') +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (448, N'Elite3EEthicalWalls::AccessLvlConfig', N'Manage', NULL, N'Elite3EEthicalWalls', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (449, N'Elite3EEthicalWalls::IsActive', N'0', NULL, N'Elite3EEthicalWalls', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (450, N'Elite3EEthicalWalls::UserRemoteIdSource', N'WindowsNetworkLogon', NULL, N'Elite3EEthicalWalls', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (451, N'Elite3EEthicalWalls::EliteUserSource', N'networkalias', NULL, N'Elite3EEthicalWalls', N'Select', N'{"values":["guid", "networkalias", "emailaddr", "username"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (452, N'Elite3EEthicalWalls::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Elite3EEthicalWalls', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (453, N'Elite3EEthicalWalls::AuditEmails', N'', NULL, N'Elite3EEthicalWalls', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (454, N'Elite3EMattWorkTkpr::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Elite3EMattWorkTkpr', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (455, N'Elite3EMattWorkTkpr::AuditEmails', N'', NULL, N'Elite3EMattWorkTkpr', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (456, N'Elite3EMattWorkTkpr::IsActive', N'0', NULL, N'Elite3EMattWorkTkpr', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (457, N'Elite3E::ConnectionString', N'', NULL, N'Elite3E', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (458, N'EnabledFoundationalPolicies', N'0', N'Foundational Policies', N'Modules', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (461, N'Foundational::DefaultSelfMaintainingMinHours', N'5', NULL, N'Foundational', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (462, N'InitialSecurityConfinement', N'0', NULL, N'Object Exceptions', N'Boolean', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (463, N'LegalKEY::LibraryXML', N'', NULL, N'LegalKEY', N'XML', N'{"schema":"LegalKEYLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (464, N'Interwoven::FoundationalGrantAccessRight', N'3', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (465, N'Interwoven::RepairFoundationalGrantAccessRight', N'1', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (466, N'Interwoven::IncrementalRepairWorkspacesAndFolders', N'0', N'Interwoven Workspace Security', N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (467, N'FoundationalSecurityGroupIDPrefix', N'ZZB_', NULL, N'Foundational', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (468, N'FoundationalSecurityGroupNamePrefix', N'IntApp Foundational Security Group for', NULL, N'Foundational', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (469, N'CMS::FoundationalGroupIDPrefix', N'^', NULL, N'CMS', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (470, N'CMS::SecureFoundationalPolicies', N'0', NULL, N'CMS', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (471, N'Interwoven::SecureFoundationalPolicies', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (472, N'Interwoven::ContentSecurityColumn', N'', NULL, N'Interwoven', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (473, N'Open::IsActive', N'0', NULL, N'Open', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (474, N'Open::LibraryXML', N'', NULL, N'Open', N'XML', N'{"schema":"OpenLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (475, N'Open::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'Open', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (476, N'Box::ApiSecretKey', N'SDU4TpNpvVmdMm60s5UADrYLpQciOZuC', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (477, N'Box::RefreshToken', N'', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (478, N'Box::AdminLogin', N'', NULL, N'Box', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (479, N'SecurityBreachEmailMessageHtml', N'

Prevented Breach Notification

Intapp has detected that access settings on the "{ObjectName}" ({ObjectType}#: {ObjectNumber}{ObjectVersion}) have been modified{BreacherUser}.

+

This {ObjectType} is currently protected by a wall. Security has been reapplied{BreachDisallowedMessage}.

+

Client: {ClientID} {ClientDesc}
+Matter: {MatterID} {MatterDesc}
+Library: {Library}

', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (480, N'SecurityBreachDisallowFormat', N' to disallow access by the {BreachPrincipalType} "{BreachPrincipalDesc}" (ID: {BreachPrincipalId})"', NULL, N'Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (481, N'DTEAxiom::IsLegacyVersion', N'0', NULL, N'DTEAxiom', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (482, N'BizTalk::WebServiceXML', N'', NULL, N'BizTalk', N'XML', N'{"schema":"BizTalkWebServiceXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (483, N'Interwoven::DisableFoundationalType', N'Standard', NULL, N'Interwoven', N'Select', N'{"values":["Standard", "Preserve", "Alter"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (484, N'Interwoven::FoundationalAlterAccessRight', N'1', NULL, N'Interwoven', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (485, N'NetDocuments::SecureLegalHolds', N'0', NULL, N'NetDocuments', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (486, N'Foundational::MaxFoundationalSecurityJobSize', N'100', NULL, N'Foundational', N'Numeric', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (487, N'FileShare::SecureFoundationalPolicies', N'0', NULL, N'FileShare', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (488, N'NetDocuments::SecureWorkspaces', N'0', N'NetDocuments Workspace Security', N'NetDocuments', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (489, N'RecalculateDEGMembershipsCronExpression', N'0 0 4 ? * TUE', NULL, N'Dynamic Groups', N'Cron expression', NULL, N'Features') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (490, N'CMS::PowerUserGroupsXML', N'', NULL, N'CMS', N'XML', N'{"schema":"CMSPowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (491, N'DM5::SecureFoundationalPolicies', N'0', NULL, N'DM5', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (492, N'DM5::FoundationalAccessRight', N'255', NULL, N'DM5', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (493, N'DM5::DisableFoundationalType', N'Standard', NULL, N'DM5', N'Select', N'{"values":["Standard", "Preserve", "Alter"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (494, N'DM5::FoundationalAlterAccessRight', N'1', NULL, N'DM5', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (495, N'Elite3EEthicalWalls::WallsPerChunk', N'2000', NULL, N'Elite3EEthicalWalls', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (496, N'Elite3EEthicalWalls::WallsPerChunkForCreateAndDelete', N'4', NULL, N'Elite3EEthicalWalls', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (497, N'Elite3EEthicalWalls::WebServiceTimeout', N'3600', NULL, N'Elite3EEthicalWalls', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (498, N'MTMEmailMaxRecipients', N'50', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (499, N'EnabledPasswordEncryption', N'0', NULL, N'General', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (500, N'SharePoint::HttpModuleUrlContinueMatchRegex', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (501, N'SharePoint::HttpModuleUrlAbortMatchRegex', N'', NULL, N'SharePoint', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (502, N'DTEAxiom::SecureUserType', N'TIMEKEEPER', NULL, N'DTEAxiom', N'Select', N'{"values":["OPERATOR", "TIMEKEEPER", "BOTH"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (503, N'DigestEmailHeader', N'', NULL, N'Digest Notifications', N'Text', NULL, N'Email') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (504, N'CalculateStatisticsCronExpression', N'0 03 3 * * ?', NULL, N'Activity Tracker', N'Cron expression', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (505, N'SharePoint::DisableBehavior', N'Preserve', NULL, N'SharePoint', N'Select', N'{"values":["Preserve", "CopyFromParent", "Alter", "PreserveAlter"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (506, N'SharePoint::DisableAlterPrincipalsXML', N'', NULL, N'SharePoint', N'XML', N'{"schema":"SharePointDisableAlterPrincipalsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (507, N'EnabledMatterTeamTimeEntryData', N'1', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (508, N'SharePoint::PowerUsersAndGroupsXML', N'', NULL, N'SharePoint', N'XML', N'{"schema":"SharePointPowerUsersAndGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (509, N'IntermediateDbConnectionString', N'server=(local);database=ActivityTracker; Integrated Security=SSPI', NULL, N'Activity Tracker', N'Connection string', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (511, N'NetDocuments::RefreshToken', N'', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (512, N'NetDocuments::ClientId', N'AP-KQUYA514', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (513, N'NetDocuments::ClientSecret', N'iUeFZkOD7mv3nHBJGAifLM2kpRaf7JONNM9za3sYQxk5d0i6', NULL, N'NetDocuments', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (514, N'NetDocuments::RESTServiceRegion', N'US', NULL, N'NetDocuments', N'Select', N'{"values":["US", "EU", "AU"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (515, N'NetDocuments::UserRemoteIdSource', N'DMS', NULL, N'NetDocuments', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (516, N'MatterTeamSubscriptionRequireReason', N'1', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (517, N'MatterTeamSubscriptionText', N'You have requested to join this matter team. Are you sure?', NULL, N'Matter Team Manager', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (518, N'FileShare::SmartRepairCronExpression', N'0 30 0 * * ?', NULL, N'FileShare', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (519, N'IsAccutracVisible', N'0', N'Accutrac', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (520, N'IsBizTalkVisible', N'0', N'BizTalk', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (521, N'IsBoxVisible', N'0', N'Box', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (522, N'IsCarpeDiemVisible', N'0', N'Carpe Diem', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (523, N'IsCarpeDiemSelfMaintainingVisible', N'0', N'Carpe Diem Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (524, N'IsCMSVisible', N'0', N'CMS', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (525, N'IsCMSSelfMaintainingVisible', N'0', N'CMS Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (526, N'IsDecisivVisible', N'0', N'Decisiv', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (527, N'IsDM5Visible', N'0', N'DM5', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (528, N'IsDM5SelfMaintainingVisible', N'0', N'DM5 Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (529, N'IsDTEAxiomVisible', N'0', N'DTE Axiom', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (530, N'IsDTEAxiomSelfMaintainingVisible', N'0', N'DTE Axiom Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (531, N'IsDTESelfMaintainingVisible', N'0', N'DTE Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (532, N'IsEliteVisible', N'0', N'Elite', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (533, N'IsElite3EVisible', N'0', N'Elite 3E', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (534, N'IsElite3EEthicalWallsVisible', N'0', N'Elite 3E Ethical Walls', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (535, N'IsElite3EMattWorkTkprVisible', N'0', N'Elite 3E Matter Working Timekeeper', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (536, N'IsElite3ESelfMaintainingVisible', N'0', N'Elite 3E Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (537, N'IsEliteRecordsVisible', N'0', N'Elite Records', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (538, N'IsFileShareVisible', N'0', N'FileShare', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (539, N'IsFileSurfVisible', N'0', N'FileSurf', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (540, N'IsGenericVisible', N'0', N'Generic', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (541, N'IsGenericDMSSelfMaintainingVisible', N'0', N'Generic DMS Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (542, N'IsGenericTimeEntrySelfMaintainingVisible', N'0', N'Generic Time Entry Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (543, N'IsInterActionVisible', N'0', N'InterAction', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (544, N'IsInterwovenVisible', N'0', N'Interwoven', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (545, N'IsInterwovenSelfMaintainingVisible', N'0', N'Interwoven Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (546, N'IsIRMVisible', N'0', N'IRM', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (547, N'IsLegalKEYVisible', N'0', N'Legal KEY', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (548, N'IsLegalKEYAdversePartiesVisible', N'0', N'Legal KEY Adverse Parties', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (549, N'IsNetDocumentsVisible', N'0', N'NetDocuments', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (550, N'IsOmniaSelfMaintainingVisible', N'0', N'Omnia Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +GO +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (551, N'IsOpenVisible', N'0', N'Open', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (552, N'IsProLawVisible', N'0', N'ProLaw', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (553, N'IsSharePointVisible', N'0', N'SharePoint', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (554, N'IsTimeBuilderVisible', N'0', N'TimeBuilder', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (555, N'IsTimeBuilderSelfMaintainingVisible', N'0', N'TimeBuilder Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (556, N'IsTimeKMVisible', N'0', N'TimeKM', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (557, N'IsWebViewVisible', N'0', N'WebView', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (558, N'IsWebViewSelfMaintainingVisible', N'0', N'WebView Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (559, N'IsWebViewTimekeeperVisible', N'0', N'WebView Timekeeper', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (560, N'WallsMessageQueue', N'IntappWBQueue@<%=@webappserver%>', NULL, N'General', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (561, N'MatterTeamManagerMessageQueue', N'IntappMTMQueue@<%=@webappserver%>', NULL, N'Matter Team Manager', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (562, N'ActivityTrackerMessageQueue', N'', NULL, N'Activity Tracker', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (563, N'APIServiceMessageQueue', N'', NULL, N'API Service', N'XML', N'{"schema":"MessageBusReceiverXML.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (564, N'EnabledMTMAutoJoinEmail', N'0', NULL, N'Matter Team Manager', N'Boolean', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (565, N'MTMAutoJoinEmailHeaderText', N'Please review the following matter team user addition:', NULL, N'Matter Team Manager', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (566, N'MTMAutoJoinEmailRejectAdditionHyperlinkText', N'Reject Addition', NULL, N'Matter Team Manager', N'Text', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (567, N'FileShare::AccessRightsXML', N' + + FullControl + ThisFolderSubFoldersAndFiles + FullControl + + + Modify + ThisFolderSubFoldersAndFiles + Modify + + + ReadWrite + ThisFolderSubFoldersAndFiles + Read + Write + + + ReadWriteAndExecute + ThisFolderSubFoldersAndFiles + Read + Write + ExecuteFile + + + ReadAndExecute + ThisFolderSubFoldersAndFiles + ReadAndExecute + + + Read + ThisFolderSubFoldersAndFiles + Read + + + Write + ThisFolderSubFoldersAndFiles + Write + +', NULL, N'FileShare', N'XML', N'{"schema":"FileShareAccessRightsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (568, N'SharePoint::UserRemoteIdSource', N'WindowsNetworkLogon', NULL, N'SharePoint', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (569, N'MatterCenter::Username', N'', NULL, N'MatterCenter', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (570, N'MatterCenter::Password', N'', NULL, N'MatterCenter', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (571, N'MatterCenter::WallUserRights', N'WebDesigner', NULL, N'MatterCenter', N'Select', N'{"values":["WebDesigner", "Contributor", "Reader", "Administrator"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (572, N'MatterCenter::IsActive', N'0', NULL, N'MatterCenter', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (573, N'MatterCenter::ConnectionString', N'', NULL, N'MatterCenter', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (574, N'MatterCenter::WallContractorRights', N'WebDesigner', NULL, N'MatterCenter', N'Select', N'{"values":["WebDesigner", "Contributor", "Reader", "Administrator"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (575, N'MatterCenter::MaxOperationsPerRequest', N'100', NULL, N'MatterCenter', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (576, N'MatterCenter::SecureDocumentsWithUniquePermissions', N'1', NULL, N'MatterCenter', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (577, N'MatterCenter::IgnoredUsersAndGroupsRegex', N'', NULL, N'MatterCenter', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (578, N'MatterCenter::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'MatterCenter', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (579, N'MatterCenter::AuditEmails', N'', NULL, N'MatterCenter', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (580, N'MatterCenter::PowerUsersAndGroupsXML', N'', NULL, N'MatterCenter', N'XML', N'{"schema":"SharePointPowerUsersAndGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (581, N'MatterCenter::DisableBehavior', N'Preserve', NULL, N'MatterCenter', N'Select', N'{"values":["Preserve", "CopyFromParent", "Alter", "PreserveAlter"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (582, N'MatterCenter::DisableAlterPrincipalsXML', N'', NULL, N'MatterCenter', N'XML', N'{"schema":"SharePointDisableAlterPrincipalsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (583, N'IsMatterCenterVisible', N'0', N'Matter Center', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (584, N'MatterCenter::UserRemoteIdSource', N'EmailAddress', NULL, N'MatterCenter', N'Select', N'{"values": ["DMS", "Financials", "Records", "TimeEntry", "CRM", "WindowsNetworkLogon", "Display", "TimeBuilder", "EmailAddress", "Open"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (585, N'CarpeDiemNG::IsActive', N'0', NULL, N'CarpeDiemNG', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (586, N'CarpeDiemNG::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'CarpeDiemNG', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (587, N'CarpeDiemNG::AuditEmails', N'', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (588, N'CarpeDiemNG::Username', N'', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (589, N'CarpeDiemNG::Password', N'', NULL, N'CarpeDiemNG', N'Password', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (590, N'CarpeDiemNG::Domain', N'', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (591, N'CarpeDiemNG::WebServiceUrl', N'', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (592, N'CarpeDiemNG::SetRestrictedSecurity', N'0', NULL, N'CarpeDiemNG', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (593, N'IsCarpeDiemNGVisible', N'0', N'Carpe Diem NG', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (594, N'CarpeDiemNGSelfMaintaining::ConnectionString', N'', NULL, N'CarpeDiemNGSelfMaintaining', N'Connection string', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (595, N'CarpeDiemNGSelfMaintaining::IsActive', N'0', NULL, N'CarpeDiemNGSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (596, N'CarpeDiemNGSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'CarpeDiemNGSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (597, N'CarpeDiemNGSelfMaintaining::IncludeUnfinalizedTimeEntries', N'0', NULL, N'CarpeDiemNGSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (598, N'IsCarpeDiemNGSelfMaintainingVisible', N'0', N'Carpe Diem NG Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (599, N'CarpeDiemNG::DummyUser', N'Intapp Walls', NULL, N'CarpeDiemNG', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (600, N'NetDocuments::MaxLookupTableUpdatesPerRequest', N'1000', NULL, N'NetDocuments', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (601, N'HostedWorksite::IsActive', N'0', NULL, N'HostedWorksite', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (602, N'HostedWorksite::LibraryXML', N'', NULL, N'HostedWorksite', N'XML', N'{"schema":"HostedWorksiteLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (603, N'HostedWorksite::ServerURL', N'', NULL, N'HostedWorksite', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (604, N'HostedWorksite::Username', N'', NULL, N'HostedWorksite', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (605, N'HostedWorksite::FullRepairCronExpression', N'0 0 1 ? * SAT', NULL, N'HostedWorksite', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (606, N'HostedWorksite::AuditEmails', N'', NULL, N'HostedWorksite', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (607, N'HostedWorksite::SecureWorkspacesAndFolders', N'1', NULL, N'HostedWorksite', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (608, N'HostedWorksite::SecureFoundationalPolicies', N'0', NULL, N'HostedWorksite', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (609, N'HostedWorksite::ContractorGrantAccessRight', N'3', NULL, N'HostedWorksite', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (610, N'HostedWorksite::FoundationalGrantAccessRight', N'3', NULL, N'HostedWorksite', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (611, N'HostedWorksite::GrantAccessRight', N'3', NULL, N'HostedWorksite', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (612, N'HostedWorksite::ContractorGroupsOnPrivateObjects', NULL, NULL, N'HostedWorksite', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (613, N'HostedWorksite::DisableInclusionaryType', N'Standard', NULL, N'HostedWorksite', N'Select', N'{"values":["Standard", "Preserve"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (614, N'HostedWorksite::PermissionsXML', N' + + READ + 1 + 1 + + + READWRITE + 2 + 2 + + + FULLACCESS + 3 + 3 + +', NULL, N'HostedWorksite', N'XML', N'{"schema":"HostedWorksitePermissionsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (615, N'IsHostedWorksiteVisible', N'0', N'Hosted Worksite', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (616, N'Interwoven::ContractorGroupsOnPrivateObjects', N'0', NULL, N'Interwoven', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (617, N'HostedWorksite::QueueJobTimeout', N'3600', NULL, N'HostedWorksite', N'Numeric', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (618, N'HostedWorksite::PowerUserGroupsXML', N'', NULL, N'HostedWorksite', N'XML', N'{"schema":"HostedWorksitePowerUserGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (619, N'DTEAxiom::SecureFoundationalPolicies', N'0', NULL, N'DTEAxiom', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (620, N'DTEAxiom::FoundationalGroupContainerIDPrefix', N'ZZCB_', NULL, N'DTEAxiom', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (621, N'DTEAxiom::FoundationalGroupContainerNamePrefix', N'IntApp Foundational Group Container for', NULL, N'DTEAxiom', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (622, N'DTEAxiom::RestrictedMessage', N'You are unable to release time due to a Foundational Wall.', NULL, N'DTEAxiom', N'Text', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (623, N'GenericInsidersSelfMaintaining::IsActive', N'0', NULL, N'GenericInsidersSelfMaintaining', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (624, N'GenericInsidersSelfMaintaining::CronExpression', N'0 30 0 * * ?', NULL, N'GenericInsidersSelfMaintaining', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (625, N'GenericInsidersSelfMaintaining::LibraryXML', N'', NULL, N'GenericInsidersSelfMaintaining', N'XML', N'{"schema":"GenericInsidersSelfMaintainingLibraryXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (626, N'IsGenericInsidersSelfMaintainingVisible', N'0', N'Generic Insiders Self-Maintaining', N'Extensions', N'ComponentSwitcher', NULL, NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (627, N'DTEAxiom::FoundationalUseRestricted', N'1', NULL, N'DTEAxiom', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (628, N'AllowedFileExtensions', N' + doc + docx + drf + eml + gif + jpeg + jpg + msg + nrl + pdf + png + ppt + pptx + rtf + tiff + txt + xls + xlsx +', NULL, N'General', N'XML', N'{"schema":"AllowedFileExtensions.xsd"}', NULL) +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (629, N'PermanentInsidersHeaderText', N'Permanent Insiders List Generated in Compliance with the Market Abuse Regulation', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (630, N'PermanentInsidersHeaderFieldsXml', N' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +', NULL, N'Insiders', N'XML', N'{"schema":"InsidersHeaderFieldsXML.xsd"}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (631, N'PermanentInsidersDefaultAddReason', N'User added to permanent access role.', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (632, N'PermanentInsidersDefaultRemoveReason', N'User removed from permanent access role.', NULL, N'Insiders', N'Text', NULL, N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (633, N'InsidersReportFieldsXml', N' + + + + + + + + + Ascending + +', NULL, N'Insiders', N'XML', N'{"schema":"InsidersReportFieldsXml.xsd"}', N'Modules') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (634, N'NetDocuments::PowerUsersAndGroupsXML', N'', NULL, N'NetDocuments', N'XML', N'{"schema":"NetDocumentsPowerUsersAndGroupsXML.xsd"}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (635, N'NetDocuments::HideGroups', N'0', NULL, N'NetDocuments', N'Boolean', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (636, N'NetDocuments::AdminEmailOption', N'Email on failure', NULL, N'NetDocuments', N'Select', N'{"values":["Always email", "Do not email", "Email on failure"]}', N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (637, N'NetDocuments::IncrementalRepairCronExpression', N'0 0/5 * * * ?', NULL, N'NetDocuments', N'Cron expression', NULL, N'Extensions') +INSERT [dbo].[Config] ([ConfigId], [ConfigVariable], [ConfigValue1], [ConfigValue2], [Category], [ConfigType], [MetaData], [SubCategoryOf]) VALUES (638, N'EnabledMTHistoryConflictValidation', N'0', NULL, N'Matter Team Manager', N'Boolean', NULL, N'Modules') +SET IDENTITY_INSERT [dbo].[Config] OFF +SET IDENTITY_INSERT [dbo].[Entities] ON + +INSERT [dbo].[Entities] ([EntityId], [EntityTypeId], [EntityRemoteSystemId], [EntityDescription], [ParentTypeId], [ParentRemoteSystemId], [ParentDescription], [EntityCustomData], [RecordsSystemId], [FinancialSystemId], [TimeEntrySystemId], [WindowsNetworkLogon], [CustomField1], [CustomField2], [CustomField3], [CustomField4], [CustomField5], [CustomField6], [CustomField7], [CustomField8], [CustomField9], [CustomField10], [IsEnabledForSearch], [Modified], [Created], [MatterOpenStatus], [MatterConfidentialityStatus], [MatterTeamEntityId], [CustomField11], [CustomField12], [CustomField13], [CustomField14], [CustomField15], [CustomField16], [CustomField17], [CustomField18], [CustomField19], [CustomField20], [CustomField21], [CustomField22], [CustomField23], [CustomField24], [CustomField25], [CustomField26], [CustomField27], [CustomField28], [CustomField29], [CustomField30], [EntityDisplayId], [CrmSystemId], [TimeBuilderSystemId], [FileshareRemoteSystemId], [OpenSystemId], [NotificationRoleId]) VALUES (1, 10, N'ALL', N'All clients and matters', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1) +INSERT [dbo].[Entities] ([EntityId], [EntityTypeId], [EntityRemoteSystemId], [EntityDescription], [ParentTypeId], [ParentRemoteSystemId], [ParentDescription], [EntityCustomData], [RecordsSystemId], [FinancialSystemId], [TimeEntrySystemId], [WindowsNetworkLogon], [CustomField1], [CustomField2], [CustomField3], [CustomField4], [CustomField5], [CustomField6], [CustomField7], [CustomField8], [CustomField9], [CustomField10], [IsEnabledForSearch], [Modified], [Created], [MatterOpenStatus], [MatterConfidentialityStatus], [MatterTeamEntityId], [CustomField11], [CustomField12], [CustomField13], [CustomField14], [CustomField15], [CustomField16], [CustomField17], [CustomField18], [CustomField19], [CustomField20], [CustomField21], [CustomField22], [CustomField23], [CustomField24], [CustomField25], [CustomField26], [CustomField27], [CustomField28], [CustomField29], [CustomField30], [EntityDisplayId], [CrmSystemId], [TimeBuilderSystemId], [FileshareRemoteSystemId], [OpenSystemId], [NotificationRoleId]) VALUES (2, 11, N'ALL_USERS', N'All users group', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1) +SET IDENTITY_INSERT [dbo].[Entities] OFF +SET IDENTITY_INSERT [dbo].[EntityTypes] ON + +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (1, N'User', N'Users', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (2, N'Group', N'Groups', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (3, N'Client', N'Clients', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (4, N'Matter', N'Matters', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (6, N'Matter Team', N'Matter Teams', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (7, N'Dynamic Client Group', N'Dynamic Client Groups', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (8, N'Dynamic Matter Group', N'Dynamic Matter Groups', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (9, N'Dynamic User Group', N'Dynamic User Groups', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (10, N'All Clients', N'All Clients', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (11, N'All Users', N'All Users', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (12, N'External User', N'External Users', 1) +SET IDENTITY_INSERT [dbo].[EntityTypes] OFF +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (1, N'Client ID', N'string', N'Client ID', N'Entities', N'EntityRemoteSystemId', 3, 0, NULL, 1, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (2, N'Matter ID', N'string', N'Matter ID', N'Entities', N'EntityRemoteSystemId', 4, 0, NULL, 1, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (3, N'Client Name', N'string', N'Client Name', N'Entities', N'EntityDescription', 3, 0, NULL, 1, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (4, N'Matter Name', N'string', N'Matter Name', N'Entities', N'EntityDescription', 4, 0, NULL, 1, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (5, N'List Open Date', N'date', N'List Opening Date', N'InsidersReports', N'Created', NULL, 0, NULL, 1, N'UTC:yyyy-MM-dd HH:mm', 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (6, N'List Update Date', N'date', N'List Last Updated', N'InsidersReports', N'Modified', NULL, 0, NULL, 1, N'UTC:yyyy-MM-dd HH:mm', 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (8, N'User Name', N'string', N'User Name', N'Entities', N'EntityDescription', 1, 1, NULL, 0, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (9, N'Access Granted', N'date', N'Date Access Granted', N'AccessHistory', N'DateGranted', NULL, 2, NULL, 0, N'UTC:yyyy-MM-dd HH:mm', 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (10, N'Access Revoked', N'date', N'Date Access Revoked', N'AccessHistory', N'DateRevoked', NULL, 3, NULL, 0, N'UTC:yyyy-MM-dd HH:mm', 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (11, N'Access Reason', N'string', N'Reason for Access', N'AccessHistory', N'AccessReason', NULL, 4, NULL, 0, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (12, N'Revoke Reason', N'string', N'Reason for Revoking Access', N'AccessHistory', N'RemovalReason', NULL, 4, N'User has access', 0, NULL, 0) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (13, N'List Creation Date', N'date', N'Date and time (creation of the insider list)', N'InsidersReports', N'Created', NULL, 0, NULL, 1, N'UTC:yyyy-MM-dd HH:mm', 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (14, N'List Update Date', N'date', N'Date and time (last update)', N'InsidersReports', N'Modified', NULL, 0, NULL, 1, N'UTC:yyyy-MM-dd HH:mm', 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (15, N'User Name', N'string', N'User Name', N'Entities', N'EntityDescription', 1, 1, NULL, 0, NULL, 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (16, N'Access Granted', N'date', N'Date Access Granted', N'PermanentInsidersAccessHistory', N'DateGranted', NULL, 2, NULL, 0, N'UTC:yyyy-MM-dd HH:mm', 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (17, N'Access Revoked', N'date', N'Date Access Revoked', N'PermanentInsidersAccessHistory', N'DateRevoked', NULL, 3, NULL, 0, N'UTC:yyyy-MM-dd HH:mm', 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (18, N'Access Reason', N'string', N'Reason for Access', N'PermanentInsidersAccessHistory', N'AccessReason', NULL, 4, NULL, 0, NULL, 1) +INSERT [dbo].[InsidersReportFields] ([InsidersReportFieldsId], [FieldName], [FieldType], [Description], [TableName], [ColumnName], [EntityTypeId], [OrderId], [EmptyText], [IsHeaderField], [DateTimeFormat], [IsPermanentInsiders]) VALUES (19, N'Revoke Reason', N'string', N'Reason for Revoking Access', N'PermanentInsidersAccessHistory', N'RemovalReason', NULL, 5, N'User has access', 0, NULL, 1) +SET IDENTITY_INSERT [dbo].[InsidersReports] ON + +INSERT [dbo].[InsidersReports] ([InsidersReportsId], [MatterEntityID], [Created], [Modified], [LastRun], [ReportXML]) VALUES (1, NULL, CAST(N'2018-02-03T17:10:07.030' AS DateTime), CAST(N'2018-02-03T17:10:07.030' AS DateTime), CAST(N'2018-02-03T17:10:07.030' AS DateTime), N'Ascending') +SET IDENTITY_INSERT [dbo].[InsidersReports] OFF +SET IDENTITY_INSERT [dbo].[MatterTeamHistoryActivityTypes] ON + +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (0, N'Migration') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (1, N'Addition') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (2, N'Removal') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (3, N'Promotion') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (4, N'Demotion') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (5, N'Update') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (6, N'Addition by Self-Maintaining') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (7, N'Addition by Relationship') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (8, N'Auto Subscription') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (9, N'Subscription') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (10, N'Expiration') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (11, N'Activation') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (12, N'Deactivation') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (13, N'Matter Team Deletion') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (14, N'Removal by Relationship') +INSERT [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId], [ActivityTypeName]) VALUES (15, N'Manual Activation') +SET IDENTITY_INSERT [dbo].[MatterTeamHistoryActivityTypes] OFF +SET IDENTITY_INSERT [dbo].[MatterTeamRole] ON + +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (1, N'Matter Manager', 1, 0, 1, 0, 0, 1, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (2, N'Matter Partner', 1, 0, 1, 0, 0, 1, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (3, N'Billing Lawyer', 1, 0, 1, 0, 0, 1, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (4, N'Delegated Administrator', 1, 1, 1, 0, 0, 1, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (5, N'Partner', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (6, N'Lawyer', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (7, N'Secretary', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (8, N'Legal Services', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (9, N'IT', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (10, N'Firm Admin', 0, 0, 1, 0, 0, 0, 0) +INSERT [dbo].[MatterTeamRole] ([RoleId], [RoleDescription], [IsAdmin], [IsDelegate], [WallRoleId], [IsExceptedFromInactiveStatus], [IsRestrictedToGlobalAdmins], [CanRemoveUsers], [CanSubscribeUsers]) VALUES (11, N'Other', 0, 0, 1, 0, 0, 0, 0) +SET IDENTITY_INSERT [dbo].[MatterTeamRole] OFF +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 1, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 2, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 3, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 4, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 5, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (1, 6, 0, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 1, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 2, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 3, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 4, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 5, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (2, 6, 1, 0) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 1, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 2, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 3, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 4, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 5, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (3, 6, 0, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 1, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 2, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 3, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 4, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 5, 1, 1) +INSERT [dbo].[NotificationRoles] ([NotificationRoleId], [WallAccessTypeId], [IsExceptedFromNotifications], [IsExceptedFromAcknowledgements]) VALUES (4, 6, 1, 1) + +SET IDENTITY_INSERT [dbo].[PolicyCategories] ON + +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (1, N'Inclusionary', N'Confidentiality', 1) +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (2, N'Exclusionary', N'Ethical Wall', 1) +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (3, N'Contractor', N'Contractor', 1) +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (4, N'Legal Hold', N'Legal Hold', 2) +INSERT [dbo].[PolicyCategories] ([PolicyCategoryId], [Name], [DisplayName], [PolicyCategoryGroupId]) VALUES (5, N'Foundational Policy', N'Foundational', 3) +SET IDENTITY_INSERT [dbo].[PolicyCategories] OFF +SET IDENTITY_INSERT [dbo].[PolicyCategoryGroups] ON + +INSERT [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId], [Name]) VALUES (1, N'Walls & Security') +INSERT [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId], [Name]) VALUES (2, N'Legal Holds') +INSERT [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId], [Name]) VALUES (3, N'Foundational Policies') +SET IDENTITY_INSERT [dbo].[PolicyCategoryGroups] OFF +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (1, N'Wall ID', 1, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (2, N'Wall Name', 1, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (3, N'Wall Type', 1, N'string', N'Type of wall (e.g. Inclusionary Ethical Wall)', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (5, N'Screening Lawyers', 1, N'string', N'Names of the screening lawyers or supervisors for the policy type', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (6, N'Notes', 1, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (7, N'Created By User Name', 1, N'string', N'User name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'UserName', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (8, N'Created By Name', 1, N'string', N'Full name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'Name', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (9, N'Created Date', 1, N'date', N'Date and time when the wall was created', N'Walls', N'Created', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (10, N'Modified Date', 1, N'date', N'Date and time when the wall was last modified', N'Walls', N'Modified', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (11, N'Enabled', 1, N'bool', N'Flag indicating whether the wall is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (12, N'Expiration Date', 1, N'date', N'Date and time when the wall is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (13, N'Wall Definition Data', 1, N'string', N'The complete list of all clients, matters, users, or groups appearing on the wall', N'WallSideEntities', NULL, 1, 0, 1, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (14, N'Client ID or Name', 1, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (15, N'Matter ID or Name', 1, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (16, N'User ID or Name', 1, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (17, N'Group ID or Name', 1, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (18, N'Client ID', 2, N'string', N'Client ID', N'Walls', N'ClientId', 1, 1, 1, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (19, N'Wall ID', 2, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (20, N'Wall Name', 2, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (21, N'Wall Type', 2, N'string', N'Type of wall (e.g. Inclusionary Ethical Wall)', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (23, N'Screening Lawyers', 2, N'string', N'Names of the screening lawyers or supervisors for the policy type', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (24, N'Notes', 2, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (25, N'Created By User Name', 2, N'string', N'User name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'UserName', 1, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (26, N'Created By Name', 2, N'string', N'Full name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'Name', 1, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (27, N'Created Date', 2, N'date', N'Date and time when the wall was created', N'Walls', N'Created', 1, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (28, N'Modified Date', 2, N'date', N'Date and time when the wall was last modified', N'Walls', N'Modified', 1, 1, 0, 28) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (29, N'Enabled', 2, N'bool', N'Flag indicating whether the wall is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 29) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (30, N'Expiration Date', 2, N'date', N'Date and time when the wall is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 32) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (31, N'Wall Definition Data', 2, N'string', N'The complete list of all clients, matters, users, or groups appearing on the wall', N'WallSideEntities', NULL, 1, 0, 1, 33) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (33, N'Matter ID or Name', 2, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 35) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (34, N'User ID or Name', 2, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (35, N'Group ID or Name', 2, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 37) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (36, N'User ID', 3, N'string', N'User ID', N'Walls', N'UserId', 1, 1, 1, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (37, N'Wall ID', 3, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 37) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (38, N'Wall Name', 3, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 38) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (39, N'Wall Type', 3, N'string', N'Type of wall (e.g. Inclusionary Ethical Wall)', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 39) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (41, N'Screening Lawyers', 3, N'string', N'Names of the screening lawyers or supervisors for the policy type', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 41) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (42, N'Notes', 3, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 42) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (43, N'Created By User Name', 3, N'string', N'User name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'UserName', 1, 1, 0, 43) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (44, N'Created By Name', 3, N'string', N'Full name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'Name', 1, 1, 0, 44) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (45, N'Created Date', 3, N'date', N'Date and time when the wall was created', N'Walls', N'Created', 1, 1, 0, 45) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (46, N'Modified Date', 3, N'date', N'Date and time when the wall was last modified', N'Walls', N'Modified', 1, 1, 0, 46) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (47, N'Enabled', 3, N'bool', N'Flag indicating whether the wall is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 47) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (48, N'Expiration Date', 3, N'date', N'Date and time when the wall is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 50) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (49, N'Wall Definition Data', 3, N'string', N'The complete list of all clients, matters, users, or groups appearing on the wall', N'WallSideEntities', NULL, 1, 0, 1, 51) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (50, N'Client ID or Name', 3, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 52) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (51, N'Matter ID or Name', 3, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 53) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (53, N'Group ID or Name', 3, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 55) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (54, N'Wall ID', 13, N'int', N'ID of the wall in Intapp Walls', N'Log', N'WallId', 1, 1, 0, 54) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (55, N'Wall Name', 13, N'string', N'Name of the wall', N'Log', N'WallName', 1, 1, 1, 55) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (56, N'User Name', 13, N'string', N'User name of the Intapp Walls user who caused the log message', N'Log', N'UserLogin', 1, 1, 0, 57) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (57, N'Name', 13, N'string', N'Full name of the Intapp Walls user who caused the log message', N'Log', N'UserName', 1, 1, 1, 58) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (58, N'Log Message Type', 13, N'string', N'The type of log message, e.g. Maintenance', N'Log', N'LogMessageType', 1, 1, 1, 59) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (59, N'Log Message', 13, N'string', N'The log message', N'Log', N'LogMessage', 1, 1, 1, 60) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (60, N'Created Date', 13, N'date', N'Date and time when the message was logged', N'Log', N'Created', 1, 1, 1, 61) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (61, N'Wall ID', 5, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 61) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (62, N'Wall Name', 5, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 62) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (63, N'User ID', 5, N'string', N'User ID', N'Entities', N'EntityRemoteSystemId', 1, 1, 0, 63) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (64, N'User Name', 5, N'string', N'Full name of the user', N'Entities', N'EntityDescription', 1, 1, 1, 64) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (65, N'User Email Address', 5, N'string', N'Email address of the user', N'Entities', N'EntityCustomData', 1, 1, 0, 65) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (66, N'Acknowledged', 5, N'bool', N'Flag indicating whether or not the wall has been acknowledged by the user', N'Walls', N'isAcknowledged', 1, 1, 1, 66) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (67, N'Acknowledgment Requested Date', 5, N'date', N'The date the acknowledgment notice was sent to the user', N'Walls', N'DateOfNotice', 1, 1, 1, 67) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (68, N'Acknowledged Date', 5, N'date', N'The date the user acknowledged the wall', N'Walls', N'DateOfAcceptance', 1, 1, 1, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (69, N'Wall Enabled', 5, N'bool', N'Flag indicating whether or not the wall is enabled', N'Walls', N'isEnabled', 1, 1, 0, 69) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (70, N'Date Added', 3, N'date', N'Date and time when the user was added to the wall', N'Walls', N'DateAdded', 1, 1, 0, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (71, N'Added by Self-Maintaining', 3, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Walls', N'WasAddedBySelfMaintaining', 1, 1, 0, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (72, N'Client Name', 2, N'string', N'Client name', N'Walls', N'ClientDesc', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (73, N'User Name', 3, N'string', N'User name', N'Walls', N'UserDesc', 1, 1, 0, 36) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (76, N'Matter Team ID or Name', 1, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (77, N'Matter Team ID or Name', 2, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 38) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (78, N'Matter Team ID or Name', 3, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 56) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (79, N'Dynamic Client Group ID or Name', 1, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (80, N'Dynamic Matter Group ID or Name', 1, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (81, N'Dynamic User Group ID or Name', 1, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (82, N'Dynamic Client Group ID or Name', 2, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 39) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (83, N'Dynamic Matter Group ID or Name', 2, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 40) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (84, N'Dynamic User Group ID or Name', 2, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 41) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (85, N'Dynamic Client Group ID or Name', 3, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 57) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (86, N'Dynamic Matter Group ID or Name', 3, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 58) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (87, N'Dynamic User Group ID or Name', 3, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 59) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (88, N'User ID', 7, N'string', N'User ID', N'Users', N'UserRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (89, N'User Name', 7, N'string', N'User name', N'Users', N'UserDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (90, N'Wall ID', 7, N'int', N'ID of the wall', N'Users', N'WallId', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (91, N'Wall Name', 7, N'string', N'Name of the wall', N'Users', N'WallName', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (92, N'Wall Modified Date', 7, N'date', N'Date and time when the wall was last modified', N'Users', N'WallModifiedDate', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (93, N'Wall Created Date', 7, N'date', N'Date and time when the wall was created', N'Users', N'WallCreatedDate', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (94, N'Wall Type', 7, N'string', N'Type of the wall (e.g. Inclusionary Ethical Wall)', N'Users', N'WallType', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (95, N'Most Recent Add to Wall Date', 7, N'date', N'The most recent wall side add date for the user', N'Users', N'MaxAddedDate', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (96, N'Added by Self-Maintaining', 7, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Users', N'WasAddedBySelfMaintaining', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (97, N'User ID', 8, N'string', N'User ID', N'Users', N'UserRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (98, N'User Name', 8, N'string', N'User name', N'Users', N'UserDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (99, N'Client ID', 8, N'string', N'Client ID', N'Clients', N'ClientRemoteId', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (100, N'Client Name', 8, N'string', N'Client name', N'Clients', N'ClientDescription', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (101, N'Matter ID', 8, N'string', N'Matter ID', N'Matters', N'MatterRemoteId', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (102, N'Matter Name', 8, N'string', N'Matter name', N'Matters', N'MatterDescription', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (103, N'Wall Allowing Access ID', 8, N'int', N'ID of the wall allowing access', N'AllowingWalls', N'WallId', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (104, N'Wall Allowing Access Name', 8, N'string', N'Name of the wall allowing access', N'AllowingWalls', N'Name', 1, 1, 1, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (105, N'Wall Allowing Access Modified Date', 8, N'date', N'Date and time when the wall allowing access was last modified', N'AllowingWalls', N'Modified', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (106, N'Wall Allowing Access Created Date', 8, N'date', N'Date and time when the wall allowing access was created', N'AllowingWalls', N'Created', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (107, N'Wall Allowing Access Type', 8, N'string', N'Type of the wall allowing access (e.g. Inclusionary Ethical Wall)', N'AllowingWallAccessTypes', N'WallAccessType', 1, 1, 0, 14) +GO +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (108, N'Wall Denying Access ID', 8, N'int', N'ID of the wall denying access', N'DenyingWalls', N'WallId', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (109, N'Wall Denying Access Name', 8, N'string', N'Name of the wall denying access', N'DenyingWalls', N'Name', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (110, N'Wall Denying Access Modified Date', 8, N'date', N'Date and time when the wall denying access was last modified', N'DenyingWalls', N'Modified', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (111, N'Wall Denying Access Created Date', 8, N'date', N'Date and time when the wall denying access was created', N'DenyingWalls', N'Created', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (112, N'Wall Denying Access Type', 8, N'string', N'Type of the wall denying access (e.g. Exclusionary Ethical Wall)', N'DenyingWallAccessTypes', N'WallAccessType', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (113, N'Most Recent Add to Wall Date', 8, N'date', N'The most recent wall side add date for the entity', N'Report', N'AddedDate', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (114, N'Added by Self-Maintaining', 8, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Report', N'WasAddedBySelfMaintaining', 1, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (115, N'User ID', 9, N'string', N'User ID', N'Users', N'UserRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (116, N'User Name', 9, N'string', N'User name', N'Users', N'UserDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (117, N'Client ID', 9, N'string', N'Client ID', N'Clients', N'ClientRemoteId', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (118, N'Client Name', 9, N'string', N'Client name', N'Clients', N'ClientDescription', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (119, N'Matter ID', 9, N'string', N'Matter ID', N'Matters', N'MatterRemoteId', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (120, N'Matter Name', 9, N'string', N'Matter name', N'Matters', N'MatterDescription', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (121, N'Wall Denying Access ID', 9, N'int', N'ID of the wall denying access', N'DenyingWalls', N'WallId', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (122, N'Wall Denying Access Name', 9, N'string', N'Name of the wall denying access', N'DenyingWalls', N'Name', 1, 1, 1, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (123, N'Wall Denying Access Modified Date', 9, N'date', N'Date and time when the wall denying access was last modified', N'DenyingWalls', N'Modified', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (124, N'Wall Denying Access Created Date', 9, N'date', N'Date and time when the wall denying access was created', N'DenyingWalls', N'Created', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (125, N'Wall Denying Access Type', 9, N'string', N'Type of the wall denying access (e.g. Exclusionary Ethical Wall)', N'DenyingWallAccessTypes', N'WallAccessType', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (126, N'Conflicting Wall ID', 9, N'int', N'ID of the conflicting wall', N'ConflictingWalls', N'WallId', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (127, N'Conflicting Wall Name', 9, N'string', N'Name of the conflicting wall', N'ConflictingWalls', N'Name', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (128, N'Conflicting Wall Modified Date', 9, N'date', N'Date and time when the conflicting wall was last modified', N'ConflictingWalls', N'Modified', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (129, N'Conflicting Wall Created Date', 9, N'date', N'Date and time when the conflicting wall was created', N'ConflictingWalls', N'Created', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (130, N'Conflicting Wall Type', 9, N'string', N'Type of the conflicting wall (e.g. Inclusionary Ethical Wall)', N'ConflictingWallAccessTypes', N'WallAccessType', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (131, N'Most Recent Add to Wall Date', 9, N'date', N'The most recent wall side add date for the entity', N'Report', N'AddedDate', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (132, N'Added by Self-Maintaining', 9, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Report', N'WasAddedBySelfMaintaining', 1, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (133, N'Client ID', 10, N'string', N'Client ID', N'Clients', N'ClientRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (134, N'Client Name', 10, N'string', N'Client name', N'Clients', N'ClientDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (135, N'Matter ID', 10, N'string', N'Matter ID', N'Matters', N'MatterRemoteId', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (136, N'Matter Name', 10, N'string', N'Matter name', N'Matters', N'MatterDescription', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (137, N'Allowed User ID', 10, N'string', N'Allowed User ID', N'AllowedUsers', N'UserRemoteId', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (138, N'Allowed User Name', 10, N'string', N'Allowed user name', N'AllowedUsers', N'UserDescription', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (139, N'Denied User ID', 10, N'string', N'Denied User ID', N'DeniedUsers', N'UserRemoteId', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (140, N'Denied User Name', 10, N'string', N'Denied user name', N'DeniedUsers', N'UserDescription', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (141, N'Shared Resource', 10, N'string', N'Shared resource name', N'Report', N'Resource', 1, 1, 1, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (142, N'Shared Resource Type', 10, N'string', N'Shared resource type', N'Report', N'ResourceType', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (143, N'Wall Allowing Access ID', 10, N'int', N'ID of the wall allowing access', N'AllowingWalls', N'WallId', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (144, N'Wall Allowing Access Name', 10, N'string', N'Name of the wall allowing access', N'AllowingWalls', N'Name', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (145, N'Wall Allowing Access Modified Date', 10, N'date', N'Date and time when the wall allowing access was last modified', N'AllowingWalls', N'Modified', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (146, N'Wall Allowing Access Created Date', 10, N'date', N'Date and time when the wall allowing access was created', N'AllowingWalls', N'Created', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (147, N'Wall Allowing Access Type', 10, N'string', N'Type of the wall allowing access (e.g. Inclusionary Ethical Wall)', N'AllowingWallAccessTypes', N'WallAccessType', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (148, N'Wall Denying Access ID', 10, N'int', N'ID of the wall denying access', N'DenyingWalls', N'WallId', 1, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (149, N'Wall Denying Access Name', 10, N'string', N'Name of the wall denying access', N'DenyingWalls', N'Name', 1, 1, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (150, N'Wall Denying Access Modified Date', 10, N'date', N'Date and time when the wall denying access was last modified', N'DenyingWalls', N'Modified', 1, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (151, N'Wall Denying Access Created Date', 10, N'date', N'Date and time when the wall denying access was created', N'DenyingWalls', N'Created', 1, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (152, N'Wall Denying Access Type', 10, N'string', N'Type of the wall denying access (e.g. Exclusionary Ethical Wall)', N'DenyingWallAccessTypes', N'WallAccessType', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (153, N'Most Recent Add to Wall Date', 10, N'date', N'The most recent wall side add date for the entity', N'Report', N'AddedDate', 1, 1, 1, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (154, N'Added by Self-Maintaining', 10, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Report', N'WasAddedBySelfMaintaining', 1, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (155, N'Client ID', 11, N'string', N'Client ID', N'Clients', N'ClientRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (156, N'Client Name', 11, N'string', N'Client name', N'Clients', N'ClientDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (157, N'Matter ID', 11, N'string', N'Matter ID', N'Matters', N'MatterRemoteId', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (158, N'Matter Name', 11, N'string', N'Matter name', N'Matters', N'MatterDescription', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (159, N'Denied User ID', 11, N'string', N'Denied user ID', N'DeniedUsers', N'UserRemoteId', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (160, N'Denied User Name', 11, N'string', N'Denied user name', N'DeniedUsers', N'UserDescription', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (161, N'Conflicting User ID', 11, N'string', N'Conflicting user ID', N'ConflictingUsers', N'UserRemoteId', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (162, N'Conflicting User Name', 11, N'string', N'Conflicting user name', N'ConflictingUsers', N'UserDescription', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (163, N'Shared Resource', 11, N'string', N'Shared resource name', N'Report', N'Resource', 1, 1, 1, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (164, N'Shared Resource Type', 11, N'string', N'Shared resource type', N'Report', N'ResourceType', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (165, N'Denied User Wall ID', 11, N'int', N'ID of the wall occupied by denied user', N'DenyingWalls', N'WallId', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (166, N'Denied User Wall Name', 11, N'string', N'Name of the wall occupied by denied user', N'DenyingWalls', N'Name', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (167, N'Denied User Wall Modified Date', 11, N'date', N'Date and time when the wall occupied by denied user was last modified', N'DenyingWalls', N'Modified', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (168, N'Denied User Wall Created Date', 11, N'date', N'Date and time when the wall occupied by denied user was created', N'DenyingWalls', N'Created', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (169, N'Denied User Wall Type', 11, N'string', N'Type of the wall occupied by denied user (e.g. Exclusionary Ethical Wall)', N'DenyingWallAccessTypes', N'WallAccessType', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (170, N'Conflicting User Wall ID', 11, N'int', N'ID of the wall occupied by conflicting user', N'ConflictingWalls', N'WallId', 1, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (171, N'Conflicting User Wall Name', 11, N'string', N'Name of the wall occupied by conflicting user', N'ConflictingWalls', N'Name', 1, 1, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (172, N'Conflicting User Wall Modified Date', 11, N'date', N'Date and time when the wall occupied by conflicting user was last modified', N'ConflictingWalls', N'Modified', 1, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (173, N'Conflicting User Wall Created Date', 11, N'date', N'Date and time when the wall occupied by conflicting user was created', N'ConflictingWalls', N'Created', 1, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (174, N'Conflicting User Wall Type', 11, N'string', N'Type of the wall occupied by conflicting user (e.g. Inclusionary Ethical Wall)', N'ConflictingWallAccessTypes', N'WallAccessType', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (175, N'Most Recent Add to Wall Date', 11, N'date', N'The most recent wall side add date for the entity', N'Report', N'AddedDate', 1, 1, 1, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (176, N'Added by Self-Maintaining', 11, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Report', N'WasAddedBySelfMaintaining', 1, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (177, N'Self Maintaining', 1, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (178, N'Self Maintaining', 2, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 42) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (179, N'Self Maintaining', 3, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 60) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (180, N'Self Maintaining', 5, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 71) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (181, N'Matter ID', 12, N'string', N'ID of the matter for the matter team', N'Matters', N'MatterRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (182, N'Matter Name', 12, N'string', N'Name of the matter for the matter team', N'Matters', N'MatterDescription', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (183, N'Status', 12, N'bool', N'The open/closed status of the matter', N'Matters', N'MatterOpenStatus', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (184, N'Confidentiality Status', 12, N'string', N'The confidentiality status of the matter', N'Matters', N'MatterConfidentialityStatus', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (185, N'Modified Date', 12, N'date', N'Date and time when the matter team was last modified', N'MatterTeams', N'MatterTeamModified', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (186, N'Created Date', 12, N'date', N'Date and time when the matter team was created', N'MatterTeams', N'MatterTeamCreated', 1, 1, 1, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (187, N'Self-Maintaining', 12, N'bool', N'Flag indicating whether the matter team is self-maintaining', N'MatterTeamFields', N'IsSelfMaintained', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (188, N'User Name', 12, N'string', N'The name of the user on the matter team', N'Users', N'UserDescription', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (189, N'User ID', 12, N'string', N'The ID of the user on the matter team', N'Users', N'UserRemoteId', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (190, N'Matter Role', 12, N'string', N'The matter role of the user on the matter team', N'MatterTeamUsers', N'RoleName', 1, 1, 1, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (191, N'Expiration Date', 12, N'date', N'Expiration date of the user on the matter team', N'MatterTeamUsers', N'ExpirationDate', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (192, N'Reason', 12, N'string', N'The reason the user is on the matter team', N'MatterTeamUsers', N'Reason', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (193, N'Active', 12, N'bool', N'Flag indicating whether the user is active or inactive on the matter team', N'MatterTeamUsers', N'Active', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (194, N'Matter ID', 14, N'string', N'ID of the matter for the matter team', N'Matters', N'MatterRemoteId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (195, N'Matter Name', 14, N'string', N'Name of the matter for the matter team', N'Matters', N'MatterDescription', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (196, N'Name', 14, N'string', N'Full name of the user who caused the log message', N'GroupEntityLog', N'User', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (197, N'Log Message Type', 14, N'string', N'The type of log message, e.g. Maintenance', N'GroupEntityLog', N'LogMessageType', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (198, N'Log Message', 14, N'string', N'The log message', N'GroupEntityLog', N'LogMessage', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (199, N'Created Date', 14, N'date', N'Date and time when the message was logged', N'GroupEntityLog', N'Created', 1, 1, 1, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (200, N'Effective Date', 1, N'date', N'Date and time when the wall is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (201, N'Effective Date', 2, N'date', N'Date and time when the wall is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 31) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (202, N'Effective Date', 3, N'date', N'Date and time when the wall is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 49) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (203, N'Modified By Name', 1, N'string', N'Full name of the Intapp Walls user who last modified the wall', N'ModifierUsers', N'Name', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (204, N'Modified By Name', 2, N'string', N'Full name of the Intapp Walls user who last modified the wall', N'ModifierUsers', N'Name', 1, 1, 0, 28) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (205, N'Modified By Name', 3, N'string', N'Full name of the Intapp Walls user who last modified the wall', N'ModifierUsers', N'Name', 1, 1, 0, 46) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (206, N'Matter ID', 15, N'string', N'Matter ID', N'Walls', N'MatterId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (207, N'Matter Name', 15, N'string', N'Matter name', N'Walls', N'MatterDescription', 1, 1, 0, 2) +GO +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (208, N'Client ID', 15, N'string', N'Client ID', N'Walls', N'ClientId', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (209, N'Client Name', 15, N'string', N'Client name', N'Walls', N'ClientDescription', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (210, N'Matter Open Status', 15, N'bool', N'The open/closed status of the matter', N'Walls', N'MatterOpenStatus', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (211, N'Matter Confidentiality', 15, N'string', N'The confidentiality status of the matter', N'Walls', N'MatterConfidentialityStatus', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (212, N'Wall ID', 15, N'int', N'ID of the wall in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (213, N'Wall Name', 15, N'string', N'Name of the wall', N'Walls', N'Name', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (214, N'Wall Type', 15, N'string', N'Type of wall (e.g. Inclusionary Ethical Wall)', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (215, N'Screening Lawyers', 15, N'string', N'Names of the screening lawyers or supervisors for the policy type', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (216, N'Notes', 15, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (217, N'Created By User Name', 15, N'string', N'User name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'UserName', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (218, N'Created By Name', 15, N'string', N'Full name of the Intapp Walls user who created the wall', N'ApplicationUsers', N'Name', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (219, N'Created Date', 15, N'date', N'Date and time when the wall was created', N'Walls', N'Created', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (220, N'Modified Date', 15, N'date', N'Date and time when the wall was last modified', N'Walls', N'Modified', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (221, N'Modified By Name', 15, N'string', N'Full name of the Intapp Walls user who last modified the wall', N'ModifierUsers', N'Name', 1, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (222, N'Enabled', 15, N'bool', N'Flag indicating whether the wall is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (223, N'Effective Date', 15, N'date', N'Date and time when the wall is set to active', N'Walls', N'EffectiveDate', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (224, N'Expiration Date', 15, N'date', N'Date and time when the wall is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (225, N'Wall Definition Data', 15, N'string', N'The complete list of all clients, matters, users, or groups appearing on the wall', N'WallSideEntities', NULL, 1, 0, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (226, N'Client ID or Name', 15, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (227, N'User ID or Name', 15, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (228, N'Group ID or Name', 15, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (229, N'Matter Team ID or Name', 15, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (230, N'Dynamic Client Group ID or Name', 15, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (231, N'Dynamic Matter Group ID or Name', 15, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (232, N'Dynamic User Group ID or Name', 15, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 28) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (233, N'Self Maintaining', 15, N'bool', N'Flag indicating whether the wall is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 29) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (234, N'Legal Hold ID', 16, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (235, N'Legal Hold Name', 16, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (236, N'Legal Hold Type', 16, N'string', N'Type of legal hold', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (237, N'Hold Supervisors', 16, N'string', N'Names of the hold supervisors', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (238, N'Notes', 16, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (239, N'Created By User Name', 16, N'string', N'User name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'UserName', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (240, N'Created By Name', 16, N'string', N'Full name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'Name', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (241, N'Created Date', 16, N'date', N'Date and time when the legal hold was created', N'Walls', N'Created', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (242, N'Modified', 16, N'date', N'Date and time when the legal hold was last modified', N'Walls', N'Modified', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (243, N'Enabled', 16, N'bool', N'Flag indicating whether the legal hold is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (244, N'Effective Date', 16, N'date', N'Date and time when the legal hold is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (245, N'Expiration Date', 16, N'date', N'Date and time when the legal hold is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (246, N'Legal Hold Definition Data', 16, N'string', N'The complete list of all clients, matters, users, or groups appearing on the legal hold', N'WallSideEntities', NULL, 1, 0, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (247, N'Client ID or Name', 16, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (248, N'Matter ID or Name', 16, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (249, N'User ID or Name', 16, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (250, N'Group ID or Name', 16, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (251, N'Matter Team ID or Name', 16, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (252, N'Dynamic Client Group ID or Name', 16, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (253, N'Dynamic Matter Group ID or Name', 16, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (254, N'Dynamic User Group ID or Name', 16, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (255, N'Self Maintaining', 16, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (256, N'Client ID', 17, N'string', N'Client ID', N'Walls', N'ClientId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (257, N'Client Name', 17, N'string', N'Client name', N'Walls', N'ClientDesc', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (258, N'Legal Hold ID', 17, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (259, N'Legal Hold Name', 17, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (260, N'Legal Hold Type', 17, N'string', N'Type of legal hold', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (261, N'Hold Supervisors', 17, N'string', N'Names of the hold supervisors', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (262, N'Notes', 17, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (263, N'Created By User Name', 17, N'string', N'User name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'UserName', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (264, N'Created By Name', 17, N'string', N'Full name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'Name', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (265, N'Created Date', 17, N'date', N'Date and time when the legal hold was created', N'Walls', N'Created', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (266, N'Modified', 17, N'date', N'Date and time when the legal hold was last modified', N'Walls', N'Modified', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (267, N'Enabled', 17, N'bool', N'Flag indicating whether the legal hold is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (268, N'Effective Date', 17, N'date', N'Date and time when the legal hold is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (269, N'Expiration Date', 17, N'date', N'Date and time when the legal hold is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (270, N'Legal Hold Definition Data', 17, N'string', N'The complete list of all clients, matters, users, or groups appearing on the legal hold', N'WallSideEntities', NULL, 1, 0, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (271, N'Matter ID or Name', 17, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (272, N'User ID or Name', 17, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (273, N'Group ID or Name', 17, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (274, N'Matter Team ID or Name', 17, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (275, N'Dynamic Client Group ID or Name', 17, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (276, N'Dynamic Matter Group ID or Name', 17, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (277, N'Dynamic User Group ID or Name', 17, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (278, N'Self Maintaining', 17, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (279, N'User ID', 18, N'string', N'User ID', N'Walls', N'UserId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (280, N'Date Added', 18, N'date', N'Date and time when the user was added to the wall', N'Walls', N'DateAdded', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (281, N'Added by Self-Maintaining', 18, N'bool', N'Flag indicating whether the user was added by self-maintaining', N'Walls', N'WasAddedBySelfMaintaining', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (282, N'User Name', 18, N'string', N'User name', N'Walls', N'UserDesc', 1, 1, 0, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (283, N'Legal Hold ID', 18, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (284, N'Legal Hold Name', 18, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (285, N'Legal Hold Type', 18, N'string', N'Type of legal hold', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (286, N'Hold Supervisors', 18, N'string', N'Names of the hold supervisors', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (287, N'Notes', 18, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (288, N'Created By User Name', 18, N'string', N'User name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'UserName', 1, 1, 0, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (289, N'Created By Name', 18, N'string', N'Full name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'Name', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (290, N'Created Date', 18, N'date', N'Date and time when the legal hold was created', N'Walls', N'Created', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (291, N'Modified', 18, N'date', N'Date and time when the legal hold was last modified', N'Walls', N'Modified', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (292, N'Enabled', 18, N'bool', N'Flag indicating whether the legal hold is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (293, N'Effective Date', 18, N'date', N'Date and time when the legal hold is set to active', N'Walls', N'EffectiveDate', 1, 1, 1, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (294, N'Expiration Date', 18, N'date', N'Date and time when the legal hold is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (295, N'Legal Hold Definition Data', 18, N'string', N'The complete list of all clients, matters, users, or groups appearing on the legal hold', N'WallSideEntities', NULL, 1, 0, 1, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (296, N'Matter ID or Name', 18, N'string', N'', N'WallSideEntities', N'Matter', 0, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (297, N'User ID or Name', 18, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (298, N'Group ID or Name', 18, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (299, N'Matter Team ID or Name', 18, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (300, N'Dynamic Client Group ID or Name', 18, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (301, N'Dynamic Matter Group ID or Name', 18, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (302, N'Dynamic User Group ID or Name', 18, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (303, N'Self Maintaining', 18, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (304, N'Matter ID', 19, N'string', N'Matter ID', N'Walls', N'MatterId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (305, N'Matter Name', 19, N'string', N'Matter name', N'Walls', N'MatterDescription', 1, 1, 0, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (306, N'Client ID', 19, N'string', N'Client ID', N'Walls', N'ClientId', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (307, N'Client Name', 19, N'string', N'Client name', N'Walls', N'ClientDescription', 1, 1, 0, 4) +GO +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (308, N'Matter Open Status', 19, N'bool', N'The open/closed status of the matter', N'Walls', N'MatterOpenStatus', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (309, N'Matter Confidentiality', 19, N'string', N'The confidentiality status of the matter', N'Walls', N'MatterConfidentialityStatus', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (310, N'Legal Hold ID', 19, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (311, N'Legal Hold Name', 19, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (312, N'Legal Hold Type', 19, N'string', N'Type of legal hold', N'WallAccessTypes', N'WallAccessType', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (313, N'Hold Supervisors', 19, N'string', N'Names of the hold supervisors', N'ScreeningLawyerKeyMap', N'EntityDescription', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (314, N'Notes', 19, N'string', N'Additional notes or comments', N'Walls', N'Notes', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (315, N'Created By User Name', 19, N'string', N'User name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'UserName', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (316, N'Created By Name', 19, N'string', N'Full name of the Intapp Walls user who created the legal hold', N'ApplicationUsers', N'Name', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (317, N'Created Date', 19, N'date', N'Date and time when the legal hold was created', N'Walls', N'Created', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (318, N'Modified Date', 19, N'date', N'Date and time when the legal hold was last modified', N'Walls', N'Modified', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (319, N'Modified User', 19, N'string', N'User name the legal hold was last modified by', N'ModifierUsers', N'Name', 1, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (320, N'Enabled', 19, N'bool', N'Flag indicating whether the legal hold is enabled', N'Walls', N'IsEnabled', 1, 1, 1, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (321, N'Effective Date', 19, N'date', N'Date and time when the legal hold is set to active', N'Walls', N'EffectiveDate', 1, 1, 0, 19) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (322, N'Expiration Date', 19, N'date', N'Date and time when the legal hold is set to expire', N'Walls', N'ExpirationDate', 1, 1, 1, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (323, N'Legal Hold Definition Data', 19, N'string', N'The complete list of all clients, matters, users, or groups appearing on the legal hold', N'WallSideEntities', NULL, 1, 0, 1, 21) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (324, N'Client ID or Name', 19, N'string', N'', N'WallSideEntities', N'Client', 0, 1, 0, 22) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (325, N'User ID or Name', 19, N'string', N'', N'WallSideEntities', N'User', 0, 1, 0, 23) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (326, N'Group ID or Name', 19, N'string', N'', N'WallSideEntities', N'Group', 0, 1, 0, 24) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (327, N'Matter Team ID or Name', 19, N'string', N'', N'WallSideEntities', N'MatterTeam', 0, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (328, N'Dynamic Client Group ID or Name', 19, N'string', N'', N'WallSideEntities', N'DynamicClientGroup', 0, 1, 0, 26) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (329, N'Dynamic Matter Group ID or Name', 19, N'string', N'', N'WallSideEntities', N'DynamicMatterGroup', 0, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (330, N'Dynamic User Group ID or Name', 19, N'string', N'', N'WallSideEntities', N'DynamicUserGroup', 0, 1, 0, 28) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (331, N'Self Maintaining', 19, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 29) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (332, N'Legal Hold ID', 20, N'int', N'ID of the legal hold in Intapp Walls', N'Log', N'WallId', 1, 1, 0, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (333, N'Legal Hold Name', 20, N'string', N'Name of the legal hold', N'Log', N'WallName', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (334, N'User Name', 20, N'string', N'User name of the Intapp Walls user who caused the log message', N'Log', N'UserLogin', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (335, N'Name', 20, N'string', N'Full name of the Intapp Walls user who caused the log message', N'Log', N'UserName', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (336, N'Log Message Type', 20, N'string', N'The type of log message, e.g. Maintenance', N'Log', N'LogMessageType', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (337, N'Log Message', 20, N'string', N'The log message', N'Log', N'LogMessage', 1, 1, 1, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (338, N'Created Date', 20, N'date', N'Date and time when the message was logged', N'Log', N'Created', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (339, N'Legal Hold Enabled', 20, N'bool', N'Flag indicating whether or not the legal hold is enabled', N'Log', N'WallEnabled', 1, 1, 0, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (340, N'Legal Hold ID', 21, N'int', N'ID of the legal hold in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (341, N'Legal Hold Name', 21, N'string', N'Name of the legal hold', N'Walls', N'Name', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (342, N'User ID', 21, N'string', N'User ID', N'Entities', N'EntityRemoteSystemId', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (343, N'User Name', 21, N'string', N'Full name of the user', N'Entities', N'EntityDescription', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (344, N'User Email Address', 21, N'string', N'Email address of the user', N'Entities', N'EntityCustomData', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (345, N'Most Recent Add Date', 21, N'date', N'Date and time when the user was added to the legal hold', N'Walls', N'MostRecentAddDate', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (346, N'Acknowledged', 21, N'bool', N'Flag indicating whether or not the legal hold has been acknowledged by the user', N'Walls', N'IsAcknowledged', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (347, N'Acknowledgment Requested Date', 21, N'date', N'The date the acknowledgment notice was sent to the user', N'Walls', N'DateOfNotice', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (348, N'Acknowledged Date', 21, N'date', N'The date the user acknowledged the legal hold', N'Walls', N'DateOfAcceptance', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (349, N'Acknowledgment Sent', 21, N'bool', N'Flag indicating whether or not an acknowledgment notice has been sent to the user', N'Walls', N'IsAcknowledgmentSent', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (350, N'Notification Name', 21, N'string', N'The name of the notification sent to the user', N'Walls', N'NotificationName', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (351, N'Notification Send Date', 21, N'date', N'The date the notification was sent to the user', N'Walls', N'NotificationSentDate', 1, 1, 1, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (352, N'Most Recent Request', 21, N'bool', N'Flag indicating whether the notification contains the most recent acknowledgment notice sent to the user.', N'Walls', N'IsMostRecentRequest', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (353, N'Legal Hold Enabled', 21, N'bool', N'Flag indicating whether or not the legal hold is enabled', N'Walls', N'isEnabled', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (354, N'Self Maintaining', 21, N'bool', N'Flag indicating whether the legal hold is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (355, N'Most Recent Add Date', 5, N'date', N'Date and time when the user was added to the policy', N'Walls', N'MostRecentAddDate', 1, 1, 0, 65) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (356, N'Acknowledgment Sent', 5, N'bool', N'Flag indicating whether or not an acknowledgment notice has been sent to the user', N'Walls', N'IsAcknowledgmentSent', 1, 1, 1, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (357, N'Notification Name', 5, N'string', N'The name of the notification sent to the user', N'Walls', N'NotificationName', 1, 1, 0, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (358, N'Notification Send Date', 5, N'date', N'The date the notification was sent to the user', N'Walls', N'NotificationSentDate', 1, 1, 1, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (360, N'Most Recent Request', 5, N'bool', N'Flag indicating whether the notification contains the most recent acknowledgment notice sent to the user.', N'Walls', N'IsMostRecentRequest', 1, 1, 0, 68) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (361, N'Policy ID', 22, N'int', N'ID of the policy in Intapp Walls', N'Walls', N'WallId', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (362, N'Policy Name', 22, N'string', N'Name of the policy', N'Walls', N'Name', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (363, N'User ID', 22, N'string', N'User ID', N'Entities', N'EntityRemoteSystemId', 1, 1, 0, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (364, N'User Name', 22, N'string', N'Full name of the user', N'Entities', N'EntityDescription', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (365, N'User Email Address', 22, N'string', N'Email address of the user', N'Entities', N'EntityCustomData', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (366, N'Most Recent Add Date', 22, N'date', N'Date and time when the user was added to the policy', N'Walls', N'MostRecentAddDate', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (367, N'Acknowledged', 22, N'bool', N'Flag indicating whether or not the policy has been acknowledged by the user', N'Walls', N'IsAcknowledged', 1, 1, 1, 7) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (368, N'Acknowledgment Requested Date', 22, N'date', N'The date the acknowledgment notice was sent to the user', N'Walls', N'DateOfNotice', 1, 1, 1, 8) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (369, N'Acknowledged Date', 22, N'date', N'The date the user acknowledged the legal hold', N'Walls', N'DateOfAcceptance', 1, 1, 1, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (370, N'Acknowledgment Sent', 22, N'bool', N'Flag indicating whether or not an acknowledgment notice has been sent to the user', N'Walls', N'IsAcknowledgmentSent', 1, 1, 1, 10) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (371, N'Notification Name', 22, N'string', N'The name of the notification sent to the user', N'Walls', N'NotificationName', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (372, N'Notification Send Date', 22, N'date', N'The date the notification was sent to the user', N'Walls', N'NotificationSentDate', 1, 1, 1, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (373, N'Most Recent Request', 22, N'bool', N'Flag indicating whether the notification contains the most recent acknowledgment notice sent to the user.', N'Walls', N'IsMostRecentRequest', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (374, N'Policy Enabled', 22, N'bool', N'Flag indicating whether or not the policy is enabled', N'Walls', N'IsEnabled', 1, 1, 0, 14) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (375, N'Self Maintaining', 22, N'bool', N'Flag indicating whether the policy is self maintaining', N'Walls', N'IsSelfMaintaining', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (376, N'Enabled', 13, N'bool', N'Flag indicating whether the wall is enabled', N'Log', N'WallEnabled', 1, 1, 0, 55) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (377, N'Wall Enabled', 7, N'bool', N'Flag indicating whether the wall is enabled', N'Users', N'WallIsEnabled', 1, 1, 0, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (378, N'Content Range Start', 16, N'date', N'Date and time value used to limit content preservation to data created after this date.', N'Walls', N'SecurityStartDate', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (379, N'Content Range End', 16, N'date', N'Date and time value used to limit content preservation to data created before this date.', N'Walls', N'SecurityEndDate', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (380, N'Content Range Start', 17, N'date', N'Date and time value used to limit content preservation to data created after this date.', N'Walls', N'SecurityStartDate', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (381, N'Content Range End', 17, N'date', N'Date and time value used to limit content preservation to data created before this date.', N'Walls', N'SecurityEndDate', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (382, N'Content Range Start', 18, N'date', N'Date and time value used to limit content preservation to data created after this date.', N'Walls', N'SecurityStartDate', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (383, N'Content Range End', 18, N'date', N'Date and time value used to limit content preservation to data created before this date.', N'Walls', N'SecurityEndDate', 1, 1, 0, 17) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (384, N'Content Range Start', 19, N'date', N'Date and time value used to limit content preservation to data created after this date.', N'Walls', N'SecurityStartDate', 1, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (385, N'Content Range End', 19, N'date', N'Date and time value used to limit content preservation to data created before this date.', N'Walls', N'SecurityEndDate', 1, 1, 0, 20) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (386, N'Type', 23, N'string', N'Type of message generated', N'ErrorLog', N'LogLevel', 1, 1, 1, 1) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (387, N'Log ID', 23, N'int', N'Unique Id of log message', N'ErrorLog', N'ErrorLogId', 1, 1, 1, 2) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (388, N'Service', 23, N'string', N'The Intapp Walls component that generated the log message', N'ErrorLog', N'ServiceType', 1, 1, 1, 3) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (389, N'Log Message', 23, N'string', N'The text of the system log entry', N'ErrorLog', N'LogMessage', 1, 1, 1, 4) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (390, N'Date', 23, N'date', N'Date and time when the log message was created', N'ErrorLog', N'Created', 1, 1, 1, 5) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (391, N'Log Exception', 23, N'string', N'Details about the action that generated an error or warning', N'ErrorLog', N'LogException', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (392, N'Notes', 5, N'string', N'Wall notes', N'Walls', N'Notes', 1, 1, 0, 72) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (393, N'Notes', 21, N'string', N'Legal hold notes', N'Walls', N'Notes', 1, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (394, N'Notes', 22, N'string', N'Policy notes', N'Walls', N'Notes', 1, 1, 0, 16) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (395, N'Foundational Group Id', 1, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 25) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (396, N'Foundational Group Id', 2, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 43) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (397, N'Foundational Group Id', 3, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 61) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (398, N'Foundational Group Id', 5, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 73) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (400, N'Foundational Group Id', 10, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (401, N'Foundational Group Id', 11, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 27) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (402, N'Foundational Group Id', 13, N'string', N'ID of the security group created by the foundational wall', N'Log', N'FoundationalGroupId', 1, 1, 0, 62) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (403, N'Foundational Group Id', 15, N'string', N'ID of the security group created by the foundational wall', N'Walls', N'FoundationalGroupId', 1, 1, 0, 30) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (404, N'Deleted', 1, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 12) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (405, N'Deleted', 2, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 30) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (406, N'Deleted', 3, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 48) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (407, N'Wall Deleted', 5, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 70) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (408, N'Deleted', 15, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (409, N'Deleted', 13, N'bool', N'Flag indicating whether the policy is deleted', N'Log', N'WallDeleted', 1, 1, 0, 56) +GO +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (410, N'Wall Deleted', 7, N'bool', N'Flag indicating whether the policy is deleted', N'Users', N'WallIsDeleted', 1, 1, 0, 6) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (411, N'Deleted', 16, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 11) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (412, N'Deleted', 17, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 13) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (413, N'Deleted', 18, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (414, N'Deleted', 19, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 18) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (415, N'Legal Hold Deleted', 21, N'bool', N'Flag indicating whether the legal hold is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 15) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (416, N'Legal Hold Deleted', 20, N'bool', N'Flag indicating whether the legal hold is deleted', N'Log', N'WallDeleted', 1, 1, 0, 9) +INSERT [dbo].[ReportFields] ([ReportFieldId], [FieldName], [ReportTypeId], [FieldType], [Description], [TableName], [ColumnName], [IsQueryable], [IsSearchable], [IsDefault], [OrderId]) VALUES (417, N'Policy Deleted', 22, N'bool', N'Flag indicating whether the policy is deleted', N'Walls', N'IsDeleted', 1, 1, 0, 15) +SET IDENTITY_INSERT [dbo].[Reports] ON + +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (10, 1, 1, N'Walls by Type', CAST(N'2018-02-03T17:06:22.130' AS DateTime), 0, N'11equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (11, 1, 2, N'Walls by Client', CAST(N'2018-02-03T17:06:22.160' AS DateTime), 0, N'29equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (12, 1, 3, N'Walls by User', CAST(N'2018-02-03T17:06:22.227' AS DateTime), 0, N'47equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (13, 1, 13, N'Prevented Breach Log', CAST(N'2018-02-03T17:06:22.307' AS DateTime), 0, N'58containsbreach1000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (14, 1, 1, N'Walls Modified in Last 30 Days', CAST(N'2018-02-03T17:06:22.447' AS DateTime), 0, N'11equal110within_last301000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (15, 1, 1, N'Walls Expiring in Next 30 Days', CAST(N'2018-02-03T17:06:22.573' AS DateTime), 0, N'11equal112within_next301000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (16, 1, 5, N'All Acknowledgments', CAST(N'2018-02-03T17:06:25.083' AS DateTime), 0, N'360equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (17, 1, 5, N'Outstanding Acknowledgments', CAST(N'2018-02-03T17:06:25.127' AS DateTime), 0, N'360equal166equal01000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (18, 1, 5, N'Outstanding Acknowledgments Older than 30 Days', CAST(N'2018-02-03T17:06:25.227' AS DateTime), 0, N'360equal166equal067prior_to301000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (19, 1, 3, N'Self-Maintaining Activity', CAST(N'2018-02-03T17:07:06.123' AS DateTime), 0, N'71equal11000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (20, 1, 1, N'Recent Activity', CAST(N'2018-02-03T17:07:39.833' AS DateTime), 0, N'10DESC15') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (21, 1, 13, N'Release Exception Log', CAST(N'2018-02-03T17:07:48.013' AS DateTime), 0, N'58containsRelease Exception1000') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (22, 1, 15, N'Walls By Matter', CAST(N'2018-02-03T17:08:12.697' AS DateTime), 0, N' + + + + + + + 222equal1 + 0equal + 0equal + + + 1000 + 206ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (23, 1, 17, N'Legal Holds By Client', CAST(N'2018-02-03T17:08:24.717' AS DateTime), 0, N' + + + + + + + 267equal1 + 0equal + 0equal + + + 1000 + 256ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (24, 1, 18, N'Legal Holds By User', CAST(N'2018-02-03T17:08:24.740' AS DateTime), 0, N' + + + + + + + 292equal1 + 0equal + 0equal + + + 1000 + 279ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (25, 1, 19, N'Legal Holds By Matter', CAST(N'2018-02-03T17:08:24.767' AS DateTime), 0, N' + + + + + + + 320equal1 + 0equal + 0equal + + + 1000 + 304ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (26, 1, 20, N'Legal Hold Log', CAST(N'2018-02-03T17:08:24.790' AS DateTime), 0, N' + + + + + + + + 1000 + 333ASC +') +INSERT [dbo].[Reports] ([ReportId], [UserId], [ReportTypeId], [Name], [Created], [IsDeleted], [ReportXml]) VALUES (27, 1, 21, N'Legal Hold Acknowledgments', CAST(N'2018-02-03T17:08:24.817' AS DateTime), 0, N' + + + + + + + 352equal1 + 0equal + 0equal + + + 1000 + 340ASC +') +SET IDENTITY_INSERT [dbo].[Reports] OFF +INSERT [dbo].[ReportsConflictingLatestUpdateDate] ([ReportTypeId], [LatestUpdateDate], [UpdateStartTime]) VALUES (8, CAST(N'2018-02-03T17:07:33.603' AS DateTime), NULL) +INSERT [dbo].[ReportsConflictingLatestUpdateDate] ([ReportTypeId], [LatestUpdateDate], [UpdateStartTime]) VALUES (9, CAST(N'2018-02-03T17:07:33.640' AS DateTime), NULL) +INSERT [dbo].[ReportsConflictingLatestUpdateDate] ([ReportTypeId], [LatestUpdateDate], [UpdateStartTime]) VALUES (10, CAST(N'2018-02-03T17:07:33.663' AS DateTime), NULL) +INSERT [dbo].[ReportsConflictingLatestUpdateDate] ([ReportTypeId], [LatestUpdateDate], [UpdateStartTime]) VALUES (11, CAST(N'2018-02-03T17:07:33.690' AS DateTime), NULL) +SET IDENTITY_INSERT [dbo].[ReportTypes] ON + +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (1, N'Walls', N'Report on general data related to walls. Each row of the report corresponds to one wall.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (2, N'Walls by Client', N'Report on data related to walls organized by client. Each row of the report corresponds one client-wall combination.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (3, N'Walls by User', N'Report on data related to walls organized by user. Each row of the report corresponds one user-wall combination.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (5, N'Wall Acknowledgments', N'Report on data related to user acknowledgments. Each row of the report corresponds to one user acknowledgment for a wall.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (6, N'Wall Definition Warnings', N'Reports which help identify walls that may put information or people in conflicting configurations.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (7, N'Users on Multiple Sides of a Wall', N'Report of users that exist on more than one side of a wall.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (8, N'Explicit Conflicting Access', N'Report on data related to user explicit conflicting access. Each row of the report corresponds to one explicit access conflict.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (9, N'Implicit Conflicting Access', N'Report on data related to user implicit conflicting access. Each row of the report corresponds to one implicit access conflict.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (10, N'Explicit Conflicting Shared Resources', N'Report on data related to related users explicit conflicting access. Each row of the report corresponds to one explicit access conflict.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (11, N'Implicit Conflicting Shared Resources', N'Report on data related to related users implicit conflicting access. Each row of the report corresponds to one implicit access conflict.', 6, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (12, N'Matter Teams by User', N'Report on data related to matter teams organized by user. Each row of the report corresponds one user-matter team combination.', NULL, NULL) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (13, N'Wall Logs', N'Report on data related to Intapp Walls log. Each row of the report corresponds to one log message.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (14, N'Matter Team Logs', N'Reports on data related to Matter Team Manager log. Each row of the report corresponds to one log message.', NULL, NULL) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (15, N'Walls by Matter', N'Report on data related to walls organized by matter. Each row of the report corresponds one matter-wall combination.', NULL, 1) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (16, N'Legal Holds by Type', N'Report on general data related to legal holds. Each row of the report corresponds to one legal hold.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (17, N'Legal Holds by Client', N'Report on data related to legal holds organized by client. Each row of the report corresponds one client-legal hold combination.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (18, N'Legal Holds by User', N'Report on data related to legal holds organized by user. Each row of the report corresponds one user-legal hold combination.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (19, N'Legal Holds by Matter', N'Report on data related to legal holds organized by matter. Each row of the report corresponds one matter-legal hold combination', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (20, N'Legal Hold Logs', N'Report on data contained within the legal hold logs. Each row of the report corresponds to one log message.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (21, N'Legal Hold Acknowledgments', N'Report on data related to user acknowledgments. Each row of the report corresponds to one user acknowledgment for a legal hold.', NULL, 2) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (22, N'Acknowledgments', N'Report on data related to user acknowledgments. Each row of the report corresponds to one user acknowledgment.', NULL, NULL) +INSERT [dbo].[ReportTypes] ([ReportTypeId], [ReportTypeName], [ReportTypeDescription], [ParentReportTypeId], [PolicyCategoryGroupId]) VALUES (23, N'System Logs', N'Report on system log messages. Each row of the report corresponds to an entry in the system log.', NULL, NULL) +SET IDENTITY_INSERT [dbo].[ReportTypes] OFF +SET IDENTITY_INSERT [dbo].[RepositoryTypes] ON + +INSERT [dbo].[RepositoryTypes] ([RepositoryTypeId], [RepositoryType]) VALUES (1, N'IWOV') +INSERT [dbo].[RepositoryTypes] ([RepositoryTypeId], [RepositoryType]) VALUES (2, N'DM5') +INSERT [dbo].[RepositoryTypes] ([RepositoryTypeId], [RepositoryType]) VALUES (3, N'BOX') +SET IDENTITY_INSERT [dbo].[RepositoryTypes] OFF +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ActivityRetentionPolicyTrigger', N'WallsJobs', N'0 0 2 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'CalculateStatisticsTrigger', N'WallsJobs', N'0 03 3 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'DeleteObjectReleaseExceptionsTrigger', N'WallsJobs', N'0 2/5 * * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ExecuteTrackersTrigger', N'WallsJobs', N'0 0/5 * * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ExpireMatterTeamMembersTrigger', N'WallsJobs', N'0 30 1 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'PerformMaintenanceTrigger', N'WallsJobs', N'0 0 3 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'RecalculateDEGMembershipsTrigger', N'WallsJobs', N'0 0 4 ? * TUE', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ReloadSettingsTrigger', N'WallsJobs', N'0 0 1/1 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'ReportTrigger', N'WallsJobs', N'0 0/5 * * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'SendDigestNotificationsTrigger', N'WallsJobs', N'0 0 1 ? * SAT', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'SendNotificationTrigger', N'WallsJobs', N'0 2/5 * * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_CRON_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [CRON_EXPRESSION], [TIME_ZONE_ID]) VALUES (N'UpdateAuditReportsTrigger', N'WallsJobs', N'0 0 2 * * ?', N'UTC') +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'ActivityRetentionPolicyJob', N'WallsJobs', N'Job that fires activity retention policy to the intermediate db.', N'Com.IntApp.Walls.Scheduler.Jobs.ActivityRetentionPolicyJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'CalculateStatisticsJob', N'WallsJobs', N'Job that fires calculation of activity statistics.', N'Com.IntApp.Walls.Scheduler.Jobs.CalculateStatisticsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'DeleteObjectReleaseExceptionsJob', N'WallsJobs', N'Job that deletes object release exceptions that are expired', N'Com.IntApp.Walls.Scheduler.Jobs.DeleteObjectReleaseExceptionsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'ExecuteTrackersJob', N'WallsJobs', N'Job that fires execution of trackers.', N'Com.IntApp.Walls.Scheduler.Jobs.ExecuteTrackersJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'ExpireMatterTeamMembersJob', N'WallsJobs', N'Job that removes expired members and demotes expired admins of matter teams', N'Com.IntApp.Walls.Scheduler.Jobs.ExpireMatterTeamMembersJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000010903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F020000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A6563740000000010050000000200000006070000000D69676E6F72654578706972656406080000000D69676E6F7265496E76616C696410060000000200000006090000000130060A00000001300B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'JobInitializationPlugin_xml_GeneratedJobs_xml', N'JobInitializationPlugin', NULL, N'Quartz.Job.FileScanJob, Quartz', N'0', N'1', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000010903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F040000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A6563740000000010050000000300000006070000001746494C455F5343414E5F4C495354454E45525F4E414D4506080000000946494C455F4E414D450609000000124C4153545F4D4F4449464945445F54494D45100600000003000000060A0000001B4A6F62496E697469616C697A6174696F6E506C7567696E5F786D6C060B00000042433A5C50726F6772616D2046696C65732028783836295C496E746170705C57425363686564756C6572536572766963655C47656E6572617465644A6F62732E786D6C080D51581625666DD5880B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'PerformMaintenance', N'WallsJobs', N'Job that performs maintenance for Intapp Walls', N'Com.IntApp.Walls.Scheduler.Jobs.PerformMaintenanceJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000010903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F070000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A6563740000000010050000000700000006070000001F69676E6F726555706461746552656C6174696F6E7368697050616972696E6706080000002369676E6F7265457874656E73696F6E735175657279526573756C7473436C65616E757006090000001C69676E6F7265456E61626C696E6745666665637469766557616C6C73060A0000001A69676E6F7265416C65727444657461696C735472696D6D696E67060B0000002069676E6F726555706461746557616C6C53656375726974795374617475736573060C0000001B69676E6F726544697361626C696E674578706972656457616C6C73060D0000001769676E6F726553797374656D4C6F675472696D6D696E67100600000007000000060E0000000130060F000000013006100000000130061100000001300612000000013006130000000130061400000001300B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'RecalculateDEGMembershipsJob', N'WallsJobs', N'Job that recalculate Dynamic Entity Group membership.', N'Com.IntApp.Walls.Scheduler.Jobs.RecalculateDEGMembershipsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'ReloadSettingsJob', N'WallsJobs', N'Job that updates the jobs configuration', N'Com.IntApp.Walls.Scheduler.Jobs.ReloadSettingsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'RunReportsJob', N'WallsJobs', N'Job that runs scheduled reports', N'Com.IntApp.Walls.Scheduler.Jobs.RunReportsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'SendDigestNotificationsJob', N'WallsJobs', N'Job that fires digest notification sending.', N'Com.IntApp.Walls.Scheduler.Jobs.SendDigestNotificationsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'SendNotificationsJob', N'WallsJobs', N'Job that sends scheduled notifications.', N'Com.IntApp.Walls.Scheduler.Jobs.SendNotificationsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP], [DESCRIPTION], [JOB_CLASS_NAME], [IS_DURABLE], [IS_VOLATILE], [IS_STATEFUL], [REQUESTS_RECOVERY], [JOB_DATA]) VALUES (N'UpdateAuditReportsJob', N'WallsJobs', N'Job that updates data for audit reports', N'Com.IntApp.Walls.Scheduler.Jobs.UpdateAuditReportsJob, WallsJobs', N'0', N'0', N'1', N'0', 0x0001000000FFFFFFFF01000000000000000C020000003D51756172747A2C2056657273696F6E3D312E302E312E332C2043756C747572653D6E65757472616C2C205075626C69634B6579546F6B656E3D6E756C6C05010000001151756172747A2E4A6F62446174614D617003000000124469727479466C61674D61702B6469727479104469727479466C61674D61702B6D6170154469727479466C61674D61702B73796E63526F6F74000302011C53797374656D2E436F6C6C656374696F6E732E486173687461626C6502000000000903000000090400000004030000001C53797374656D2E436F6C6C656374696F6E732E486173687461626C65070000000A4C6F6164466163746F720756657273696F6E08436F6D70617265721048617368436F646550726F7669646572084861736853697A65044B6579730656616C756573000003030005050B081C53797374656D2E436F6C6C656374696F6E732E49436F6D70617265722453797374656D2E436F6C6C656374696F6E732E4948617368436F646550726F766964657208EC51383F000000000A0A170000000905000000090600000004040000000D53797374656D2E4F626A656374000000001005000000000000001006000000000000000B) +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'CALENDAR_ACCESS') +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'JOB_ACCESS') +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'MISFIRE_ACCESS') +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'STATE_ACCESS') +INSERT [dbo].[SCHEDULER_LOCKS] ([LOCK_NAME]) VALUES (N'TRIGGER_ACCESS') +INSERT [dbo].[SCHEDULER_SIMPLE_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [REPEAT_COUNT], [REPEAT_INTERVAL], [TIMES_TRIGGERED]) VALUES (N'JobInitializationPlugin_xml_GeneratedJobs_xml', N'JobInitializationPlugin', -1, 60000, 2) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ActivityRetentionPolicyTrigger', N'WallsJobs', N'ActivityRetentionPolicyJob', N'WallsJobs', N'0', NULL, 636535656000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'CalculateStatisticsTrigger', N'WallsJobs', N'CalculateStatisticsJob', N'WallsJobs', N'0', NULL, 636535693800000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'DeleteObjectReleaseExceptionsTrigger', N'WallsJobs', N'DeleteObjectReleaseExceptionsJob', N'WallsJobs', N'0', NULL, 636535210200000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ExecuteTrackersTrigger', N'WallsJobs', N'ExecuteTrackersJob', N'WallsJobs', N'0', NULL, 636535209000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ExpireMatterTeamMembersTrigger', N'WallsJobs', N'ExpireMatterTeamMembersJob', N'WallsJobs', N'0', NULL, 636535638000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'JobInitializationPlugin_xml_GeneratedJobs_xml', N'JobInitializationPlugin', N'JobInitializationPlugin_xml_GeneratedJobs_xml', N'JobInitializationPlugin', N'1', NULL, 636535209030000000, 636535208430000000, 5, N'WAITING', N'SIMPLE', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'PerformMaintenanceTrigger', N'WallsJobs', N'PerformMaintenance', N'WallsJobs', N'0', NULL, 636535692000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'RecalculateDEGMembershipsTrigger', N'WallsJobs', N'RecalculateDEGMembershipsJob', N'WallsJobs', N'0', NULL, 636540912000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ReloadSettingsTrigger', N'WallsJobs', N'ReloadSettingsJob', N'WallsJobs', N'0', NULL, 636535224000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'ReportTrigger', N'WallsJobs', N'RunReportsJob', N'WallsJobs', N'0', NULL, 636535209000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'SendDigestNotificationsTrigger', N'WallsJobs', N'SendDigestNotificationsJob', N'WallsJobs', N'0', NULL, 636538212000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'SendNotificationTrigger', N'WallsJobs', N'SendNotificationsJob', N'WallsJobs', N'0', NULL, 636535210200000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP], [JOB_NAME], [JOB_GROUP], [IS_VOLATILE], [DESCRIPTION], [NEXT_FIRE_TIME], [PREV_FIRE_TIME], [PRIORITY], [TRIGGER_STATE], [TRIGGER_TYPE], [START_TIME], [END_TIME], [CALENDAR_NAME], [MISFIRE_INSTR], [JOB_DATA]) VALUES (N'UpdateAuditReportsTrigger', N'WallsJobs', N'UpdateAuditReportsJob', N'WallsJobs', N'0', NULL, 636535656000000000, -1, 5, N'WAITING', N'CRON', 636535207830000000, 0, NULL, 0, NULL) +INSERT [dbo].[TrackerCategories] ([TrackerCategoryId], [Name]) VALUES (1, N'Custom') +INSERT [dbo].[TrackerCategories] ([TrackerCategoryId], [Name]) VALUES (2, N'Template') +INSERT [dbo].[TrackerCategories] ([TrackerCategoryId], [Name]) VALUES (3, N'Linked') +SET IDENTITY_INSERT [dbo].[TrackerTypes] ON + +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (1, N'Custom', 1, N'custom.png', N'Standard Summary/Threshold not linked to a Policy', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (2, N'Template - Same Policy Side', 2, N'template_sameside.png', N'For clients/matters on each policy side, monitor activity for users on the SAME policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (3, N'Template - Other Policy Sides', 2, N'template_otherside.png', N'For clients/matters on each policy side, monitor activity for users on the OTHER policy sides', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (4, N'Template - All Except Policy Side', 2, N'template_allexceptside.png', N'For clients/matters on each policy side, monitor activity for all users EXCEPT users on the SAME policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (5, N'Template - All Users', 2, N'template_allusers.png', N'For clients/matters on each policy side, monitor activity for all users', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (6, N'Linked - Same Policy Side', 3, N'linked_sameside.png', N'For clients/matters on each policy side, monitor activity for users on the SAME policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (7, N'Linked - Other Policy Sides', 3, N'linked_otherside.png', N'For clients/matters on each policy side, monitor activity for users on the OTHER policy sides', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (8, N'Linked - All Except Policy Side', 3, N'linked_allexceptside.png', N'For clients/matters on each policy side, monitor activity for all users EXCEPT users on the SAME policy side ', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (9, N'Linked - All Users', 3, N'linked_allusers.png', N'For clients/matters on each policy side, monitor activity for all users', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (10, N'Template - Contractor', 2, N'template_contractor.png', N'For users on the policy side, monitor activity for all clients and matters except those on the policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (11, N'Linked - Contractor', 3, N'linked_contractor.png', N'For users on the policy side, monitor activity for all clients and matters except those on the policy side', 1) +INSERT [dbo].[TrackerTypes] ([TrackerTypeId], [TrackerType], [TrackerCategoryId], [Icon], [Description], [IsVisible]) VALUES (12, N'Smart', 1, N'statistical_allusers.png', N'For clients/matters on each tracker side, monitor activity for all users using statistical analysis', 0) +SET IDENTITY_INSERT [dbo].[TrackerTypes] OFF +SET IDENTITY_INSERT [dbo].[WallAccessTypes] ON + +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (1, N'Confidential Client/Matter - Client Requested', N'Off', N'Off', 1, N'WallIcon-ClientRequested.png', N'Matter confidentiality in response to a client request. Only explicitly selected people and groups have access to matter information.', N' +1111 + + +1 +1 +', N'Off', N'Off', 1, N'Fixed Lookback And Ongoing') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (2, N'Confidential Client/Matter - Partner Requested', N'Off', N'Off', 1, N'WallIcon-PartnerRequested.png', N'Matter confidentiality in response to a partner request. Only explicitly selected people and groups have access to matter information.', N' +1111 + + +1 +1 +', N'Off', N'Off', 1, N'Fixed Lookback And Ongoing') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (3, N'Ethical Screen - Waiver-Driven', N'On', N'Off', 2, N'WallIcon-WaiverDriven.png', N'Ethical wall in which a waiver has been obtained from one or more clients. Selected people cannot access specified client or matter information.', N' +11111111 + + +2 +2 +', N'Off', N'Off', 2, N'Fixed Lookback And Ongoing') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (4, N'Ethical Screen - Lateral Hire', N'Off', N'Off', 2, N'WallIcon-LateralHire.png', N'Ethical wall in which a lateral is being barred from a list of conflicting clients or matters.', N' +111 + + +2 +2 +', N'Off', N'Off', 2, N'Fixed Lookback And Ongoing') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (5, N'Internal Legal Hold', N'On', N'Off', 4, N'WallIcon-LegalHold.png', N'Legal hold - Certain client or matter information needs to be preserved. Users subject to this hold will not be able to modify the affected data.', N' + + + + 1 + 1 + 1 + 1 + + + 1 + 1 + 1 + 1 + + + + + + + + +1 +1 +0 +', N'Off', N'Off', 4, N'No Default') +INSERT [dbo].[WallAccessTypes] ([WallAccessTypeId], [WallAccessType], [SelfMaintaining], [RequireAckForAccess], [OrderId], [Icon], [Description], [SideConfig], [AutoAddMatterTeams], [RelationshipPairing], [PolicyCategoryId], [DefaultSelfMaintainingIntervalType]) VALUES (6, N'Foundational Policy', N'Off', N'Off', 5, N'WallIcon-Foundational.png', N'Clients and matters affected by this foundational policy will be set to private with only the selected users being granted access. Exclusionary wall security affecting these clients and matters will still be applied and any inclusionary walls will take precedence over this foundational policy', N' + + + + 1 + 1 + 1 + 1 + + + 1 + 1 + 1 + 1 + + + + + + + +1 +1 +', N'Off', N'Off', 5, N'Fixed Lookback And Ongoing') +SET IDENTITY_INSERT [dbo].[WallAccessTypes] OFF +SET IDENTITY_INSERT [dbo].[WallRoles] ON + +INSERT [dbo].[WallRoles] ([WallRoleId], [WallRoleName], [WallRoleXML]) VALUES (1, N'Default Access', NULL) +SET IDENTITY_INSERT [dbo].[WallRoles] OFF +SET IDENTITY_INSERT [dbo].[Widget] ON + +INSERT [dbo].[Widget] ([Id], [Name], [Description], [Url], [OrderNumber], [Editable], [SupportRedirection]) VALUES (2, N'Chart', N'Walls By Type or Acknowledgments HighCharts chart.', N'Widgets/ChartWidget.ascx', 1, 0, 1) +INSERT [dbo].[Widget] ([Id], [Name], [Description], [Url], [OrderNumber], [Editable], [SupportRedirection]) VALUES (3, N'Recent Activity', N'Displays walls with recent activity that was committed by the user currently logged into the application.', N'Widgets/RecentActivityWidget.ascx', 2, 0, 1) +INSERT [dbo].[Widget] ([Id], [Name], [Description], [Url], [OrderNumber], [Editable], [SupportRedirection]) VALUES (4, N'Matter Access Check', N'Check user access control availability.', N'Widgets/MatterAccessCheckWidget.ascx', 3, 0, 1) +INSERT [dbo].[Widget] ([Id], [Name], [Description], [Url], [OrderNumber], [Editable], [SupportRedirection]) VALUES (5, N'Report', N'Widget to display reports.', N'Widgets/ReportViewerWidget.ascx', 4, 0, 1) +SET IDENTITY_INSERT [dbo].[Widget] OFF +SET IDENTITY_INSERT [dbo].[WidgetInstance] ON + +INSERT [dbo].[WidgetInstance] ([Id], [WidgetZoneId], [WidgetId], [OrderNumber], [Expanded], [Maximized], [Resized], [Width], [Height], [Title], [WidgetProperties]) VALUES (2, 1, 2, 1, 1, 1, 0, 450, 330, N'Policies By Type', N'WallsByType') +INSERT [dbo].[WidgetInstance] ([Id], [WidgetZoneId], [WidgetId], [OrderNumber], [Expanded], [Maximized], [Resized], [Width], [Height], [Title], [WidgetProperties]) VALUES (3, 1, 3, 2, 1, 1, 0, 450, 330, N'All Recent Activity', N'All') +SET IDENTITY_INSERT [dbo].[WidgetInstance] OFF +SET IDENTITY_INSERT [dbo].[WidgetZone] ON + +INSERT [dbo].[WidgetZone] ([Id], [WidgetZoneTypeId], [UserId], [OrderNumber], [Title]) VALUES (1, 1, 1, 0, N'Main dashboard') +SET IDENTITY_INSERT [dbo].[WidgetZone] OFF +SET IDENTITY_INSERT [dbo].[WidgetZoneType] ON + +INSERT [dbo].[WidgetZoneType] ([Id], [WidgetZoneType], [WidgetZoneTypeDescription]) VALUES (1, N'Dashboard', N'Widget Zones which are located on the home page.') +SET IDENTITY_INSERT [dbo].[WidgetZoneType] OFF + +-- New lines + +SET IDENTITY_INSERT [dbo].[Notifications] ON + +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (1, 0, N'[AllSAllUnacknowledgedUsers]', N'

The firm represents [S1ClientMatterNames]. Due to the sensitive nature of the work being performed, the client has requested only named individuals be allowed access to the following:

+

 

+

[AllSideInformation]

+

 

+

Effective immediately:

+

1.Only the team members listed above will be allowed to access any files, databases, etc relating to the above clients/matters. 2.The team members listed above will not share with anyone not listed above any confidential information that was received in the course of their work.

+

 

+

[AcknowledgmentRequest] This screening arrangement will remain effective until further notice; we appreciate your compliance with this memo. Should you have any questions, please contact [ScreeningLawyerNames].

+

 

+

 

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Confidentiality (Outside Counsel Guidelines)', N'Confidentiality Memo: [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (2, 0, N'[AllSAllUsers]', N'

The firm represents [S1ClientMatterNames]. This representation is highly confidential and should not be disclosed or discussed with any other person except as set forth in this memorandum.

+

 

+

We may have obtained or may obtain, through our representation of the above, certain confidential information which, due to heightened sensitivity, should be kept insulated from other lawyers within the firm. As a result, we have internally decided to erect an information barrier between the following team members and the rest of the firm regarding the representation of the below.

+

 

+

[AllSideInformation]

+

 

+

No lawyer, legal assistant or staff member working on the above engagement shall discuss with any lawyer, legal assistant or staff member not working on the above engagement any information relating to his or her respective client engagement. In addition, all files and documents maintained by each member of the team will be kept in a secure fashion and will not be made available to any lawyer not listed above.

+

 

+

Any addition of personnel to any of the teams will be reflected immediately by an appropriate amendment to this memorandum.

+

 

+

Your strict and rigorous adherence to the spirit as well as the letter of each of these procedures and requirements is of the utmost importance both to the interests of our clients and to the integrity and reputation of our firm.

+

 

+

Any questions about these procedures should be referred to [ScreeningLawyerNames].

', 0, 1, NULL, 0, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Confidentiality (Partner Requested; Clients & Matters)', N'Sensitive Matter - [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (3, 0, N'[AllSAllUsers]', N'

The Firm has been engaged to provide legal advice and counsel to [S1ClientMatterNames] ("Client") in connection with various matters. Due to the sensitivity of the work involved, we are implementing a barrier between those persons working for the Client and those persons not working for the Client. The firm personnel who are working on the Client''s matters consist of [S1UserNames] (“Team”).

+

 

+

The Firm has implemented the following screening procedures:

+
    +
  1. All personnel not listed above will be screened in the firm''s client database from the Client.
  2. +
  3. The Team will not discuss or share information concerning the Client with any lawyers or staff outside the Team.
  4. +
  5. Personnel not listed above shall not work on the Client''s matters.
  6. +
  7. [ScreeningLawyerNames] will ensure that additional persons asked to work on the above matters are not subject to other exclusionary screens and are provided with a copy of this memorandum.
  8. +
  9. All Client files will be maintained exclusively in the possession of persons designated by [ScreeningLawyerNames].
  10. +
  11. A copy of this memorandum will be placed in the Firm''s files pertaining to the Client.
  12. +
  13. Any person who knowingly violates the terms of this screen risks sanctions, including possible termination, for violation of these restrictions.
  14. +
+

 Should you have any questions relating to this memorandum, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 0, N'On-Demand', NULL, NULL, NULL, N'Template', NULL, NULL, NULL, N'WB Template - Confidentiality (Partner Requested; Clients)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (4, 0, N'{put your distribution list for entire firm here}', N'

All,

+

 

+

On [EffectiveDate], [S1UserNames] will be joining us as a lateral hire from {put the firm name here}. While there, [S1UserNames] participated in matters that were sometimes adverse to [S2ClientMatterNames]. Therefore, to minimize the appearance of risk, we will be screening [S1UserNames] from any matters that involve [S2ClientMatterNames].

+

 

+

Effective immediately:

+

 

+

[AllSideInformation]

+

 

+
    +
  1. No one at the firm will have any discussion with [S1UserNames] about any matter relating to the above client/matter(s). This will remain in effect even after the representation on this client/matter(s) has been closed to avoid any future conflict regarding representation of clients/matters similar to the above.
  2. +
  3. [S1UserNames] will be prohibited from accessing any information involving [S2ClientMatterNames].
  4. +
  5. No documents relating to [S2ClientMatterNames] will be circulated to [S1UserNames].
  6. +
+

 

+

This screening arrangement will remain effective until further notice; we appreciate your compliance with this memo. Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Lateral (to Firm)', N'Lateral hire screening memo', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (5, 0, N'[S1AllUsers]', N'

[S1UserNames],

+

 

+

The firm is advising on [S2ClientMatterNames] (“Restricted Matter”). You have indicated that you have acted adverse to this Restricted Matter or a related matter(s) at your previous firm and may therefore have obtained confidential information which might reasonably be expected to be material to the firm’s client(s) in the Restricted Matter. Accordingly, the firm has implemented an information barrier which prohibits you from working on the Restricted Matter or discussing your prior work in relation to that matter.

+

 

+

Please click the acknowledgement below by which you confirm that you:

+

 

+
    +
  1. undertake that you have not brought any documents to the firm which relate to the Restricted Matter and will not discuss your prior work in relation to the Restricted Matter with anyone at the firm;
  2. +
  3. understand that if you are asked to work on the Restricted Matter, you will decline immediately and inform a risk and compliance lawyer;
  4. +
  5. understand that you will be denied access to the electronic file for the Restricted Matter and undertake that you will not seek to obtain information about the Restricted matter, and
  6. +
  7. have not previously had any discussions or exchanged documents that would result in a breach of this information barrier.
  8. +
+

 

+

[AcknowledgmentRequest] There must be strict adherence to these procedures. Any breach of this information barrier may result in disciplinary action. Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Lateral (to Lateral)', N'Lateral hire screening memo', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (6, 0, N'[AllSAllUsers]', N'

All,
 

+

Notice is being given of a potential conflict arising from the firm’s representation of [S1ClientMatterNames] and [S2ClientMatterNames]. We have received waivers from both clients, and our continued representation of both is contingent on our establishing a screen between the teams working on either client. To ensure that information is not inadvertently shared between the teams, effective immediately:

+

 

+

[AllSideInformation]

+
    +
  1. No one working on matters relating to one of the above named clients will share with any one working on the other named client any confidential information that was received in the course of their work.
  2. +
  3. Members of each team will be prohibited from accessing any files, databases, etc relating to the opposite team.
  4. +
  5. No member of either team can become a member of the opposite team. If you are currently working on both teams, notify your manager and [ScreeningLawyerNames] immediately so we can assign you appropriately.
  6. +
  7. Support staff may not be shared across the two teams.
  8. +
+

 

+

This screening arrangement will remain effective until further notice; we appreciate your compliance with this memo. [AcknowledgmentRequest] Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Information Barrier (Client Waivers)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (7, 0, N'[AllSAllUsers]', N'

All,

+

 

+

The firm represents [S1ClientMatterNames]. In addition, the Firm is representing [S2ClientMatterNames]. We may have obtained or may obtain certain confidential information from one team that should be kept insulated from the other. As a result, we have internally decided to erect an “ethical wall” between the two teams. To ensure that information is not inadvertently shared between the teams, effective immediately:

+

 

+

[AllSideInformation]

+

 

+

These representations are highly confidential and should not be disclosed or discussed with any other person except as set forth in this memorandum. No lawyer, legal assistant or staff member working on one side shall discuss with any lawyer, legal assistant or staff member working on the other side any information relating to his or her respective client or matter engagement. In addition, all files and documents maintained by each member of the respective teams will be kept in a secure fashion and will not be made available to any member of the other client team.

+

 

+

Any addition of personnel to any of the teams will be reflected immediately by an appropriate amendment to this memorandum.

+

 

+

Your strict and rigorous adherence to the spirit as well as the letter of each of these procedures and requirements is of the utmost importance both to the interests of our clients and to the integrity and reputation of our firm.

+

 

+

Any questions about these procedures should be referred to [ScreeningLawyerNames].

+

 

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Information Barrier (2 Client/Matter Teams)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (8, 0, N'[AllSAllUsers]', N'

The firm has been engaged to provide legal advice and counsel to [S1ClientMatterNames] in connection with various matters. The firm also represents [S2ClientMatterNames] in multiple matters.

+

 

+

While there is no conflict, out of an abundance of caution, we are implementing a wall between those persons working for [S1ClientMatterNames] and [S2ClientMatterNames]. The firm personnel are as follows:

+

 

+

[AllSideInformation]

+

 

+

The firm has implemented the following screening procedures:

+
    +
  1. The [S1ClientMatterNames] team members will be screened in the firm''s client database from all [S2ClientMatterNames] matters. The [S2ClientMatterNames] team members will be screened in the firm''s client database from all [S1ClientMatterNames] matters.
  2. +
  3. The [S1ClientMatterNames] team members will not discuss or share information concerning [S1ClientMatterNames] with the [S2ClientMatterNames] team. The [S2ClientMatterNames] team members will not discuss or share information concerning [S2ClientMatterNames] with the [S1ClientMatterNames] team members.
  4. +
  5. The [S1ClientMatterNames] team members shall not work on any [S2ClientMatterNames] matters. The [S2ClientMatterNames] team members shall not work on any [S1ClientMatterNames] matters.
  6. +
  7. All [S1ClientMatterNames] and [S2ClientMatterNames] files will be maintained in the possession of the appropriate team members.
  8. +
  9. A copy of this memorandum will be placed in the firm''s files pertaining to [S1ClientMatterNames] and [S2ClientMatterNames].
  10. +
  11. Any person who knowingly violates the terms of this screen risks sanctions, including possible termination, for violation of these restrictions.
  12. +
+

 

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Information Barrier (2 Client Teams)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (9, 0, N'[S1AllUsers]', N'

{This memo is meant to be distributed to one side. Make a copy and edit the memo accordingly for each of the other teams.}

+

All,

+

 

+

The firm has been engaged to provide legal advice and counsel on [S1ClientMatterNames] ("Matter"). {Insert explanation of why this matter team needs to be walled from the other matter teams.} Therefore, out of an abundance of caution, we are implementing walls between you and the teams working on the other matters, [S2ClientMatterNames] and [S3ClientMatterNames] {insert additional sides as necessary}(“Other Matters"). The firm personnel are as follows:

+

 

+

[AllSideInformation]

+

 

+

Matter team members shall comply with the following:

+
    +
  1. No documents or information (including but not limited to physical or electronic documents, email or other correspondence) concerning the Matter may be circulated, shown to, or discussed with anyone other than members of the matter team, their secretaries, and risk and compliance lawyers.
  2. +
  3. Any physical files and documents relating to the Matter should be kept within the offices of team members or in secure cabinets allocated to them. When no longer required for current use, physical files and documents should be placed in storage with access restricted to the team members and risk and compliance lawyers. Team members and secretaries must handle all work, filing and other information relating to the Matter and such information should not be left out in public areas or desks when not in use.
  4. +
  5. All electronic documents (whenever created) relating to the Matter must be profiled with the appropriate matter number and saved to the correct matter workspace in the document management system to ensure that these documents are correctly restricted to the correct matter team, their secretaries, and risk and compliance lawyers.
  6. +
  7. The matter team includes secretaries who carry out work on the Matter. Secretaries in the team may not work on the Other Matters, even as emergency cover, save with the advance consent of a risk and compliance lawyer.
  8. +
  9. Each Matter team member will ensure that his or her secretary is aware of the obligations imposed by the terms of this memorandum. By confirming compliance with this memorandum, each team member also expressly confirms there have been no prior communications of any kind which, had they taken place after the date of this memorandum, would have constituted a breach of this information barrier.
  10. +
  11. All members of the Matter team confirm that they do not have material confidential information regarding the Other Matters and undertake not to seek to obtain any information about the Other Matters.
  12. +
+

 

+

[AcknowledgmentRequest] If anyone at the firm violates the terms of this information barrier he or she will be subject to disciplinary action which may include termination of his or her employment. Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Information Barrier (Multi-sided Matter Teams)', N'Screening procedures for [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (10, 0, N'{insert firm-wide email here}', N'

All,

+

 

+

[S1UserNames] has recently joined the firm as a contract lawyer. [S1UserNames] will be working on [S1ClientMatterNames] and will not be allowed access to any confidential information for any other clients and matters. Effective immediately:

+

 

+

[AllSideInformation]

+

 

+

No one working on matters other than the ones listed above may share with [S1UserNames] any confidential information that was received in the course of their work.

+

 

+

This screening arrangement will remain effective until further notice; we appreciate your compliance with this memo. Should you have any questions, please contact [ScreeningLawyerNames].

', 0, 1, NULL, 0, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Contractor', N'Screening procedures for Contractor', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (11, 0, N'[AllSAllUsers]', N'

A claim was filed on [EffectiveDate] against the firm arising out of our representing [S1ClientMatterNames]. We are under a legal obligation to preserve all information potentially relevant to the issues raised in the claim. By this memorandum, the individuals listed below must immediately preserve and protect such information. This information may currently be stored on computer systems as electronic files, emails, or otherwise stored as hard copies or in some other tangible form. Effective immediately, the data and custodians associated with the below client/matter are subject to this legal hold:

 

[AllSideInformation]

 

The obligations under this legal hold are continuing and apply equally to information created after, as well as before, this memorandum was delivered. In addition:

 

  • The aforementioned custodians are instructed to identify places where potentially relevant electronic and paper documents, folders, and other information may be stored and make appropriate arrangement for its preservation.
  • The aforementioned custodians are directed to suspend practices regarding the retention and/or destruction of data pertaining to the client/matter listed above.
  • The IT department is directed to immediately disable the deletion of “archived emails” for the listed individuals.

 

Keep in mind that as your emails are subject to a legal hold, they may be subject to disclosure to other parties and the public. Please exercise caution and discretion in your communications. Please contact [ScreeningLawyerNames] if you have any questions or believe that anybody else should be added to the above list.

', 0, 1, NULL, 1, N'On-Demand', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer],{add IT team here}', NULL, NULL, N'WB Template - Internal Legal Hold', N'Legal Hold Memo: [Name]', 1, 0, 0, 0) + +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (12, 0, N'[AllSAllUsers]', N'

[EventInformation]. As this is pertaining to a confidential matter(s), please inform [ScreeningLawyerNames] or the Risk team immediately if this is incorrect. The revised policy membership is as follows:

+

 

+

[AllSideInformation]

', 0, 1, NULL, 0, N'Event-Driven', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: New User Added to Confidentiality Policy', N'Alert - User added to [Name]', 1, 16, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (13, 0, N'[AllSAllUsers]', N'

[EventInformation]. If you believe this change was made in error, please contact [ScreeningLawyerNames] or the Risk team immediately. The revised policy membership is as follows:

+

 

+

[AllSideInformation]

', 0, 1, NULL, 0, N'Event-Driven', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: New User Added to Ethical Wall', N'Alert - User added to [Name]', 1, 16, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (14, 0, N'[AllSAllUsers]', N'

[EventInformation]. If you believe this change was made in error, please contact [ScreeningLawyerNames] or the Risk team immediately. The revised membership is as follows:

+

 

+

[AllSideInformation]

', 0, 1, NULL, 0, N'Event-Driven', NULL, NULL, NULL, N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: User Removed from Policy', N'Alert - User removed from [Name]', 1, 32, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (15, 0, N'[AllSAllUnacknowledgedUsers]', N'

This is a reminder to acknowledge the [Name] memo that was sent out earlier. For your reference, below is the original memo:

+

 

+

{insert memo content here and include the acknowledgement request}

+

 

', 0, 1, NULL, 1, N'Scheduled', CAST(N'2012-11-30T00:00:00.000' AS DateTime), 7, N'D', N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: Reminder to Acknowledge', N'Action required - Sensitive Matter - [Name]', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (16, 0, N'[AllSAllUsers]', N'

This is a reminder that the [Name] memo circulated 6 months ago is still in effect. For your reference, below is the original memo:

+

 

+

{copy memo content here but do not include acknowledgement request}

', 0, 1, NULL, 0, N'Scheduled', CAST(N'2012-11-30T00:00:00.000' AS DateTime), 6, N'M', N'Template', N'[ScreeningLawyer]', NULL, NULL, N'WB Template - Alert: Reminder Policy Still in Effect', N'Reminder that [Name] is still in effect', 1, 0, 0, 0) +INSERT [dbo].[Notifications] ([NotificationId], [WallId], [RecipientList], [NotificationText], [ForceNotification], [IsEnabled], [LastNotification], [IncludeAcknowledgments], [NotificationType], [NextNotification], [TimeNumber], [TimeUnit], [Scope], [CcList], [BccList], [From], [NotificationName], [Subject], [CreatorId], [TriggerEvents], [IsDeleted], [IsDigest]) VALUES (17, 0, N'[ScreeningLawyer]', N'

[ScreeningLawyerNames],

+

 

+

[EventInformation]. Information pertaining to:

+

[S1ClientMatterNames]

+

[S2ClientMatterNames]

+

will be publicly accessible, unless there is another policy in place with regards to this, within the Firm effective immediately. Please see policy description below:

+

 

+

[AllGeneralInformation]

+

[AllSideInformation]

+

 

+

Please let the Risk team know if you have any questions regarding any of the foregoing.

', 0, 1, NULL, 0, N'Event-Driven', NULL, NULL, NULL, N'Template', NULL, NULL, NULL, N'WB Template - Alert: Policy Disabled', N'Alert - [Name] has been disabled', 1, 12, 0, 0) +SET IDENTITY_INSERT [dbo].[Notifications] OFF + +USE [master] +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET READ_WRITE +GO diff --git a/modules/sqlserver_install/templates/script_walls_data_old.sql.erb b/modules/sqlserver_install/templates/script_walls_data_old.sql.erb new file mode 100644 index 0000000..dbe7a39 --- /dev/null +++ b/modules/sqlserver_install/templates/script_walls_data_old.sql.erb @@ -0,0 +1,294 @@ +USE [<%=@sqlserverdbname%>] +GO +SET IDENTITY_INSERT [dbo].[EntityTypes] ON + +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (1, N'User', N'Users', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (2, N'Group', N'Groups', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (3, N'Client', N'Clients', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (4, N'Matter', N'Matters', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (6, N'Matter Team', N'Matter Teams', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (7, N'Dynamic Client Group', N'Dynamic Client Groups', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (8, N'Dynamic Matter Group', N'Dynamic Matter Groups', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (9, N'Dynamic User Group', N'Dynamic User Groups', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (10, N'All Clients', N'All Clients', 0) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (11, N'All Users', N'All Users', 1) +INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (12, N'External User', N'External Users', 1) +SET IDENTITY_INSERT [dbo].[EntityTypes] OFF +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField1', 1, N'PersonID', N'String', N'PersonID', 0, 0, 0, 0, 0, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField1', 3, N'AML Status', N'STRING', N'AML Status', 0, 1, 0, 1, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField1', 4, N'AML flag', N'STRING', N'AML flag', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField1', 12, N'PersonID', N'String', N'PersonID', 0, 0, 0, 0, 0, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField10', 1, N'Nationality', N'String', N'Nationality', 0, 0, 0, 0, 0, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField10', 3, N'Partner', N'String', N'Partner', 0, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField10', 12, N'Nationality', N'String', N'Nationality', 0, 0, 0, 0, 0, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField11', 1, N'Jurisdiction of Qualification', N'String', N'Jurisdiction of Qualification', 0, 0, 0, 0, 0, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField11', 12, N'Jurisdiction of Qualification', N'String', N'Jurisdiction of Qualification', 0, 0, 0, 0, 0, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField2', 1, N'Office', N'String', N'Office', 0, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField2', 3, N'Status', N'STRING', N'Status', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField2', 4, N'Status', N'String', N'Status', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField2', 12, N'Office', N'String', N'Office', 0, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField20', 4, N'Matter Partner Code', N'String', N'Matter Partner Code', 0, 0, 0, 0, 0, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField3', 1, N'Extension', N'String', N'Extension', 0, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField3', 3, N'Client Group', N'String', N'Client Group', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField3', 4, N'Office', N'String', N'Office', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField3', 12, N'Extension', N'String', N'Extension', 0, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField4', 1, N'Time Recorder', N'Boolean', N'Time Recorder', 0, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField4', 3, N'Office', N'String', N'Office', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField4', 4, N'Partner', N'String', N'Partner', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField4', 12, N'Time Recorder', N'Boolean', N'Time Recorder', 0, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField5', 1, N'Status', N'STRING', N'Status', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField5', 3, N'Opening Date', N'Date', N'Opening Date', 1, 1, 0, 0, 1, 0, N'UTC:yyyy-MM-dd HH:mm') +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField5', 4, N'Opening Date', N'Date', N'Opening Date', 1, 1, 0, 0, 1, 0, N'UTC:yyyy-MM-dd HH:mm') +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField5', 12, N'Status', N'STRING', N'Status', 0, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField6', 1, N'Role', N'STRING', N'Role', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField6', 3, N'Tier', N'STRING', N'Tier', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField6', 4, N'Countries Included In Mandate', N'String', N'Countries Included In Mandate', 0, 0, 1, 0, 0, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField6', 12, N'Role', N'STRING', N'Role', 0, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField7', 1, N'Job Title', N'STRING', N'Job Title', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField7', 3, N'Sector', N'STRING', N'Sector', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField7', 4, N'Countries Cleared For Mandate', N'String', N'Countries Cleared For Mandate', 0, 0, 1, 0, 0, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField7', 12, N'Job Title', N'STRING', N'Job Title', 0, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField8', 1, N'Practice Group', N'String', N'Practice Group', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField8', 3, N'Number Open Matters', N'String', N'Number Open Matters', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField8', 12, N'Practice Group', N'String', N'Practice Group', 0, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField9', 1, N'Sub Practice Group', N'String', N'Sub Practice Group', 1, 1, 0, 0, 1, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField9', 3, N'Cleared Countries', N'String', N'Cleared Countries', 0, 0, 0, 0, 0, 0, NULL) +INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField9', 12, N'Sub Practice Group', N'String', N'Sub Practice Group', 0, 1, 0, 0, 1, 0, NULL) +SET IDENTITY_INSERT [dbo].[ApplicationUsers] ON + +--INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (-1, 3, N'IntApp', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'IntApp', N'', 1, 0, CAST(N'2015-08-10 14:09:41.450' AS DateTime), CAST(N'2015-08-10 14:09:41.450' AS DateTime), NULL, 3, 3, 1) +--INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (1, 1, N'admin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Administrator', N'', 1, 0, CAST(N'2015-08-10 14:09:37.510' AS DateTime), CAST(N'2017-06-30 15:25:03.593' AS DateTime), CAST(N'2017-06-30 15:25:03.427' AS DateTime), 1, 1, 1) + +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (2, 1, N'freshfields\FCL-SA-WEB-V100-W', N'f3YEIv52ihIhTdm8luARBw==', N'Web DC1', N'FCL-SA-WEB-V100-W@freshfields.com', 1, 0, CAST(N'2015-08-10 14:16:41.637' AS DateTime), CAST(N'2017-05-04 11:39:27.030' AS DateTime), CAST(N'2017-05-04 11:39:26.853' AS DateTime), 1, 1, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (3, 1, N'FRESHFIELDS\FCL-SA-APP-V150-W', N'N+HLgvi7t8LHGZzhRznIgA==', N'Extension Service ', N'FCL-SA-APP-V150-W@freshfields.com', 1, 0, CAST(N'2015-08-10 18:08:08.290' AS DateTime), CAST(N'2017-05-03 17:47:31.470' AS DateTime), CAST(N'2017-03-07 17:17:12.540' AS DateTime), 1, 1, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (4, 1, N'freshfields\randerson', N'VjHf6ilMSq1sKv6KCNuSfw==', N'Reuben Anderson', N'reuben.anderson@freshfields.com', 1, 0, CAST(N'2015-09-30 15:17:14.320' AS DateTime), CAST(N'2017-04-04 15:11:05.903' AS DateTime), CAST(N'2017-04-04 15:11:05.953' AS DateTime), NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (5, 3, N'freshfields\apanchabakesan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ashok Panchabakesan', N'ashok.panchabakesan@freshfields.com', 1, 0, CAST(N'2015-11-17 17:59:33.800' AS DateTime), CAST(N'2017-06-28 12:00:16.707' AS DateTime), CAST(N'2016-04-18 16:36:59.980' AS DateTime), NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (6, 1, N'freshfields\rstollenmaier', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Rob Stollenmaier', N'robert.stollenmaier@freshfields.com', 1, 0, CAST(N'2015-11-17 18:00:19.057' AS DateTime), CAST(N'2017-06-30 18:07:27.657' AS DateTime), CAST(N'2017-06-30 18:07:27.397' AS DateTime), 1, 1, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (7, 1, N'freshfields\jchastell', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'John Chastell', N'john.chastell@freshfields.com', 1, 0, CAST(N'2016-02-11 16:47:59.700' AS DateTime), CAST(N'2016-03-15 10:55:54.757' AS DateTime), CAST(N'2016-02-25 12:36:36.740' AS DateTime), 1, 1, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (8, 1, N'freshfields\a-apanchabakesan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ashok Admin account', N'ashok.panchabakesan@freshfields.com', 1, 1, CAST(N'2016-02-15 17:17:42.220' AS DateTime), CAST(N'2016-04-26 17:48:26.970' AS DateTime), CAST(N'2016-04-26 17:48:26.950' AS DateTime), 1, 1, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (9, 2, N'freshfields\dmartins', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Dami Martins', N'dami.martins@freshfields.com', 1, 1, CAST(N'2016-03-09 10:29:04.833' AS DateTime), CAST(N'2017-03-10 11:04:55.460' AS DateTime), CAST(N'2017-03-10 11:04:55.437' AS DateTime), 2, 2, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (10, 1, N'freshfields\kjaupaj', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Klintian Jaupaj', N'klintian.jaupaj@freshfields.com', 1, 0, CAST(N'2016-03-09 10:29:30.267' AS DateTime), CAST(N'2017-03-10 10:19:58.770' AS DateTime), CAST(N'2017-03-10 10:19:58.743' AS DateTime), 2, 2, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (11, 1, N'agallagher', N'VmRwEzUgK6VFCSs1mdI6Ug==', N'Alan Gallagher', N'alan.gallagher@errigalitconsulting.com', 1, 0, CAST(N'2016-03-14 18:17:32.940' AS DateTime), CAST(N'2016-03-15 10:56:09.820' AS DateTime), CAST(N'2016-03-14 18:23:00.947' AS DateTime), 2, 2, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (12, NULL, N'freshfields\lontestlab11', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'lontestlab11', N'lontestlab11@freshfields.com', 1, 0, CAST(N'2016-03-23 12:52:13.653' AS DateTime), CAST(N'2016-11-07 11:07:47.763' AS DateTime), CAST(N'2016-11-07 11:07:47.757' AS DateTime), 3, 3, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (13, 1, N'freshfields\jeakin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'John Eakin', N'john.eakin@freshfields.com', 1, 1, CAST(N'2016-03-24 12:14:49.717' AS DateTime), CAST(N'2017-01-17 10:41:52.773' AS DateTime), CAST(N'2017-01-17 10:41:52.750' AS DateTime), 1, 1, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (14, 1, N'freshfields\sogilvie', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Suzie Ogilvie', N'Suzie.Ogilvie@freshfields.com', 1, 0, CAST(N'2016-04-15 15:47:41.507' AS DateTime), CAST(N'2017-06-29 10:16:45.127' AS DateTime), NULL, 1, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (15, 1, N'freshfields\udowns', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ursula Downs', N'Ursula.Downs@freshfields.com', 1, 0, CAST(N'2016-04-15 15:48:23.260' AS DateTime), CAST(N'2017-06-17 14:29:47.290' AS DateTime), NULL, 1, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (16, 1, N'freshfields\elau', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Erica Lau', N'Erica.Lau@freshfields.com', 1, 0, CAST(N'2016-04-15 15:49:43.200' AS DateTime), CAST(N'2017-06-29 17:09:12.413' AS DateTime), CAST(N'2017-06-29 17:09:12.347' AS DateTime), 2, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (17, 1, N'freshfields\fqureshi', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Faraz Qureshi', N'Faraz.Qureshi@freshfields.com', 1, 1, CAST(N'2016-04-15 15:50:28.463' AS DateTime), CAST(N'2016-04-15 15:50:28.463' AS DateTime), NULL, NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (18, 1, N'freshfields\asknox', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ashley Knox', N'Ashley.Knox@freshfields.com', 1, 1, CAST(N'2016-04-15 15:51:21.840' AS DateTime), CAST(N'2017-02-23 12:18:10.043' AS DateTime), CAST(N'2017-02-23 12:18:10.023' AS DateTime), NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (19, 1, N'freshfields\stcarson', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Steve Carson', N'Steve.Carson@freshfields.com', 1, 1, CAST(N'2016-04-15 15:51:51.937' AS DateTime), CAST(N'2016-04-15 15:52:00.133' AS DateTime), NULL, NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (20, 1, N'freshfields\aelamraoui', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Amal El Amraoui', N'Amal.ElAmraoui@freshfields.com', 1, 0, CAST(N'2016-04-15 15:52:45.040' AS DateTime), CAST(N'2017-02-22 12:14:16.720' AS DateTime), NULL, 2, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (21, 3, N'freshfields\Lontestlab10', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Lontestlab10', N'Lontestlab10@freshfields.com', 1, 0, CAST(N'2016-04-21 16:33:19.303' AS DateTime), CAST(N'2016-12-13 16:40:19.470' AS DateTime), CAST(N'2016-12-13 16:40:19.187' AS DateTime), NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (22, 3, N'freshfields\Lontestlab57', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Lontestlab57', N'Lontestlab57 @freshfields.com', 1, 0, CAST(N'2016-04-21 16:33:35.113' AS DateTime), CAST(N'2016-10-05 17:33:19.360' AS DateTime), CAST(N'2016-10-05 17:33:19.527' AS DateTime), NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (23, NULL, N'freshfields\LONTESTLAB27', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Tetsing Account', N'LONTESTLAB27@email.com', 1, 0, CAST(N'2016-06-07 12:43:25.097' AS DateTime), CAST(N'2016-10-17 10:59:22.173' AS DateTime), CAST(N'2016-10-17 10:59:22.307' AS DateTime), 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (24, 1, N'freshfields\fcl-sa-int-v805-i', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'IB DC2', N'fcl-sa-int-v805-i@freshfields.com', 1, 1, CAST(N'2016-06-24 15:03:45.687' AS DateTime), CAST(N'2017-04-12 11:04:34.863' AS DateTime), NULL, NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (25, 1, N'freshfields\nbegum', N'gdyb21LQTcIANtvYMT7QVQ==', N'Nazmin Begum', N'nazmin.begum@freshfields.com', 1, 1, CAST(N'2016-08-03 15:39:21.333' AS DateTime), CAST(N'2016-08-04 16:21:27.050' AS DateTime), CAST(N'2016-08-04 16:21:26.980' AS DateTime), NULL, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (26, 1, N'FRESHFIELDS\FCL-SA-APP-V861-W', N'WLXUhFZYGmZjjWXI6jcozQ==', N'Extension Service DC2', N'email@freshfield.com', 1, 1, CAST(N'2016-08-09 10:39:23.627' AS DateTime), CAST(N'2017-04-12 11:10:36.443' AS DateTime), NULL, 1, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (27, 1, N'freshfields\algallagher', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Alan Gallagher', N'alan.gallagher@freshfields.com', 1, 0, CAST(N'2016-09-08 15:55:28.453' AS DateTime), CAST(N'2017-06-29 16:40:04.023' AS DateTime), CAST(N'2017-06-29 16:40:03.970' AS DateTime), 1, 1, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (28, 2, N'freshfields\gismain', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Garry Ismain', N'Garry.Ismain@freshfields.com', 1, 1, CAST(N'2016-09-27 17:38:39.760' AS DateTime), CAST(N'2016-09-28 12:35:07.310' AS DateTime), CAST(N'2016-09-28 12:35:07.443' AS DateTime), 1, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (29, 2, N'freshfields\Lontestlab33', N'CB0eFo27lDCixrwi9nwYUg==', N'Lontestlab33', N'Lontestlab33 @freshfields.com', 1, 0, CAST(N'2016-10-04 10:56:24.090' AS DateTime), CAST(N'2016-10-04 10:56:24.090' AS DateTime), NULL, NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (30, 3, N'freshfields\LontestlabCTX', N'CB0eFo27lDCixrwi9nwYUg==', N'Context Test Account - DELETE ME', N'LontestlabCTX @freshfields.com', 1, 1, CAST(N'2016-10-04 10:58:44.457' AS DateTime), CAST(N'2016-10-04 10:58:44.457' AS DateTime), NULL, NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (31, 3, N'freshfields\LontestlabCTX', N'CB0eFo27lDCixrwi9nwYUg==', N'Context Test User - DELETE ME', N'lontestlabctx @freshfields.com', 1, 1, CAST(N'2016-10-04 12:49:14.653' AS DateTime), CAST(N'2016-10-04 12:59:08.870' AS DateTime), NULL, NULL, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (32, NULL, N'freshfields\dvieira', N'gdyb21LQTcIANtvYMT7QVQ==', N'Domingos', N'Domingos.VIEIRAANDRADE@freshfields.com', 1, 1, CAST(N'2016-10-10 12:22:33.137' AS DateTime), CAST(N'2016-10-10 12:22:33.137' AS DateTime), NULL, NULL, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (33, 1, N'freshfields\jclark', N'gdyb21LQTcIANtvYMT7QVQ==', N'James Clark', N'James.CLARK@freshfields.com', 1, 1, CAST(N'2016-10-13 12:07:40.747' AS DateTime), CAST(N'2016-12-14 17:24:57.117' AS DateTime), CAST(N'2016-12-14 17:24:57.257' AS DateTime), 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (34, 1, N'freshfields\a-jclark', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'James Clark', N'james.clark@freshfields.com', 1, 1, CAST(N'2016-10-13 16:44:03.910' AS DateTime), CAST(N'2016-10-13 16:58:40.863' AS DateTime), CAST(N'2016-10-13 16:58:40.987' AS DateTime), 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (35, NULL, N'a-jclark', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'James Clark', N'james.clark@freshfields.com', 1, 1, CAST(N'2016-10-13 16:55:54.547' AS DateTime), CAST(N'2016-10-13 16:55:54.547' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (36, 3, N'freshfields\vkelmendi', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Visar Kelmendi', N'Visar.KELMENDI@freshfields.com', 1, 1, CAST(N'2016-10-19 17:11:17.613' AS DateTime), CAST(N'2017-03-01 11:24:33.280' AS DateTime), NULL, NULL, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (37, 1, N'freshfields\akonstantaras', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Andrew Konstantaras', N'Andrew.KONSTANTARAS@freshfields.com', 1, 1, CAST(N'2016-11-08 12:08:09.200' AS DateTime), CAST(N'2017-02-06 12:15:00.860' AS DateTime), CAST(N'2017-02-06 12:15:00.843' AS DateTime), 2, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (38, 2, N'freshfields\jajude', N'gdyb21LQTcIANtvYMT7QVQ==', N'James Jude', N'james.jude@freshfields.com', 1, 0, CAST(N'2016-11-21 14:53:58.567' AS DateTime), CAST(N'2016-11-21 15:34:51.610' AS DateTime), CAST(N'2016-11-21 15:34:51.790' AS DateTime), NULL, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (39, 1, N'freshfields\wcutler', N'gdyb21LQTcIANtvYMT7QVQ==', N'Wendy Cutler', N'wendy.cutler@freshfields.com', 1, 1, CAST(N'2016-12-14 17:05:50.747' AS DateTime), CAST(N'2017-05-11 18:14:52.763' AS DateTime), CAST(N'2017-05-11 18:14:52.540' AS DateTime), NULL, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (40, 1, N'freshfields\trapley', N'gdyb21LQTcIANtvYMT7QVQ==', N'Taf Rapley', N'taf.rapley@freshfields.com', 1, 0, CAST(N'2016-12-20 16:34:12.463' AS DateTime), CAST(N'2017-06-30 12:11:49.820' AS DateTime), CAST(N'2017-06-30 12:11:49.747' AS DateTime), 1, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (41, 2, N'freshfields\gponder', N'gdyb21LQTcIANtvYMT7QVQ==', N'Gary Ponder', N'Gary.Ponder@freshfields.com', 1, 0, CAST(N'2017-01-17 10:40:20.083' AS DateTime), CAST(N'2017-01-17 10:40:20.083' AS DateTime), NULL, NULL, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (42, 1, N'freshfields\davmorris', N'X03MO1qnZdYdgyfeuILPmQ==', N'David Morris', N'david.morris@freshfields.com', 1, 1, CAST(N'2017-02-14 12:11:12.177' AS DateTime), CAST(N'2017-05-11 16:20:42.730' AS DateTime), CAST(N'2017-05-11 16:20:42.557' AS DateTime), 1, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (43, 1, N'Freshfields\adjohn', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Adrian John', N'adrian.john@freshfields.com', 1, 0, CAST(N'2017-02-22 12:10:58.673' AS DateTime), CAST(N'2017-06-30 16:55:25.200' AS DateTime), CAST(N'2017-06-30 16:55:24.997' AS DateTime), 2, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (44, 1, N'freshfields\nwitcomb', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Nicholas Witcomb', N'nicholas.witcomb@freshfields.com', 1, 0, CAST(N'2017-02-22 12:11:49.690' AS DateTime), CAST(N'2017-06-30 17:44:10.863' AS DateTime), CAST(N'2017-06-30 17:44:10.643' AS DateTime), 1, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (45, 1, N'freshfields\bgreenwald', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Brenna Greenwald', N'Brenna.GREENWALD@freshfields.com', 1, 0, CAST(N'2017-02-22 12:12:09.503' AS DateTime), CAST(N'2017-06-30 16:42:18.510' AS DateTime), CAST(N'2017-06-30 16:42:18.303' AS DateTime), 2, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (46, 1, N'freshfields\aoputa', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Adaora Oputa', N'adaora.oputa@freshfields.com', 1, 0, CAST(N'2017-02-22 12:12:31.487' AS DateTime), CAST(N'2017-06-26 11:24:01.817' AS DateTime), CAST(N'2017-06-26 11:24:01.623' AS DateTime), 2, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (47, NULL, N'monoe', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Moishe Noe', N'Moishe.NOE@freshfields.com', 1, 1, CAST(N'2017-02-22 12:15:12.653' AS DateTime), CAST(N'2017-02-22 12:15:12.653' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (48, NULL, N'freshfields\mknowles', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Matthew Knowles', N'Matthew.KNOWLES@freshfields.com', 1, 0, CAST(N'2017-02-22 12:15:36.580' AS DateTime), CAST(N'2017-03-09 12:54:39.530' AS DateTime), CAST(N'2017-03-09 12:54:39.523' AS DateTime), 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (49, NULL, N'freshfields\rrafikhanova', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Rana Rafikhanova', N'rana.rafikhanova@freshfields.com', 1, 0, CAST(N'2017-02-22 12:18:55.623' AS DateTime), CAST(N'2017-03-09 17:50:56.967' AS DateTime), CAST(N'2017-03-09 17:50:56.943' AS DateTime), 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (50, NULL, N'freshfields\jschleyeralt', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jorge Antonio Schleyer Alt', N'jorge.schleyer@freshfields.com', 1, 0, CAST(N'2017-02-22 12:19:26.550' AS DateTime), CAST(N'2017-03-01 11:19:24.740' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (51, NULL, N'freshfields\jredkwa', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jarrad Redkwa', N'Jarrad.REDKWA@freshfields.com', 1, 0, CAST(N'2017-02-22 12:20:06.770' AS DateTime), CAST(N'2017-03-01 11:19:06.597' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (52, NULL, N'freshfields\eadepoju', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Esther Adepoju', N'Esther.ADEPOJU@freshfields.com', 1, 0, CAST(N'2017-02-22 12:21:07.520' AS DateTime), CAST(N'2017-03-01 11:20:34.610' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (53, NULL, N'freshfields\AZSMITH', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Amanda Smith', N'Amanda.Smith@freshfields.com', 1, 0, CAST(N'2017-02-22 12:21:37.567' AS DateTime), CAST(N'2017-03-01 11:19:39.993' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (54, NULL, N'freshfields\DBENKHEDDA', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Donna Benkhedda', N'donna.benkhedda@freshfields.com', 1, 0, CAST(N'2017-02-22 12:22:33.603' AS DateTime), CAST(N'2017-03-01 11:20:23.153' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (55, NULL, N'spapafio', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Sharon Papafio', N'sharon.papafio@freshfields.com', 1, 1, CAST(N'2017-02-22 12:24:16.413' AS DateTime), CAST(N'2017-02-22 12:24:16.413' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (56, NULL, N'freshfields\koldfield', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Kathryn Oldfield', N'kathryn.oldfield@freshfields.com', 1, 0, CAST(N'2017-02-22 12:26:34.133' AS DateTime), CAST(N'2017-03-01 11:21:01.360' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (57, NULL, N'freshfields\aconway', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ashley Conway', N'ashley.conway@freshfields.com', 1, 1, CAST(N'2017-02-22 17:44:37.280' AS DateTime), CAST(N'2017-03-01 11:20:11.207' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (58, 2, N'freshfields\bbommineni', N'X03MO1qnZdYdgyfeuILPmQ==', N'Bapaiah Bommineni', N'Bapaiah.BOMMINENI@freshfields.com', 1, 1, CAST(N'2017-02-23 14:01:04.573' AS DateTime), CAST(N'2017-03-02 18:49:22.307' AS DateTime), CAST(N'2017-03-02 18:49:22.303' AS DateTime), 2, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (59, 1, N'freshfields\ssey', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Stephanie Sey', N'stephanie.sey@freshfields.com', 1, 0, CAST(N'2017-03-02 17:06:25.017' AS DateTime), CAST(N'2017-06-30 12:51:28.417' AS DateTime), CAST(N'2017-06-30 12:51:28.303' AS DateTime), 2, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (60, 1, N'freshfields\jglaeser', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Julieth Glaeser', N'julieth.glaeser@freshfields.com', 1, 0, CAST(N'2017-03-07 08:51:45.623' AS DateTime), CAST(N'2017-06-30 12:10:28.643' AS DateTime), CAST(N'2017-06-30 12:10:27.623' AS DateTime), 2, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (61, 1, N'freshfields\FCL-SA-INT-V001-I', N'6QDtUXA3CIS3zrShdsv0sQ==', N'IB DC1', N'FCL-SA-INT-V001-I@freshfields.com', 1, 0, CAST(N'2017-03-14 16:43:51.863' AS DateTime), CAST(N'2017-06-10 20:13:20.933' AS DateTime), NULL, 1, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (62, 1, N'FRESHFIELDS\FCL-SA-WEB-V100-API', N'X03MO1qnZdYdgyfeuILPmQ==', N'API DC1', N'FCL-SA-WEB-V100-API@freshfields.com', 1, 0, CAST(N'2017-03-16 15:59:46.210' AS DateTime), CAST(N'2017-05-03 17:46:52.050' AS DateTime), NULL, 1, 1, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (63, 1, N'freshfields\FCL-SA-WEB-V590-W', N'6Fvb1A5GzYgL3/D3S74/6g==', N'Web DC2', N'FCL-SA-WEB-V590-W@freshfields.com', 1, 0, CAST(N'2017-04-12 10:57:28.810' AS DateTime), CAST(N'2017-05-03 17:48:40.620' AS DateTime), NULL, NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (64, 1, N'freshfields\FCL-SA-WEB-V590-API', N'6Fvb1A5GzYgL3/D3S74/6g==', N'API DC2', N'FCL-SA-WEB-V590-API@freshfields.com', 1, 0, CAST(N'2017-04-12 11:11:15.560' AS DateTime), CAST(N'2017-05-03 17:49:09.980' AS DateTime), NULL, NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (65, 1, N'freshfields\ACL-SA-APP-V302-W', N'6Fvb1A5GzYgL3/D3S74/6g==', N'Asia Extension Service DC5', N'asia@freshfields.com', 1, 1, CAST(N'2017-04-12 11:12:44.577' AS DateTime), CAST(N'2017-04-12 11:12:44.577' AS DateTime), NULL, NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (66, 1, N'freshfields\ACL-SA-APP-V802-W', N'6Fvb1A5GzYgL3/D3S74/6g==', N'Asia Extension Service DC6', N'Asia@freshfields.com', 1, 1, CAST(N'2017-04-12 11:13:31.060' AS DateTime), CAST(N'2017-04-12 11:13:31.060' AS DateTime), NULL, NULL, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (67, 1, N'freshfields\andavies', N'cZ3x2eI6Q4Uwg6yvwDtwtQ==', N'Anthony Davies ', N'anthony.davies@freshfields.com', 1, 0, CAST(N'2017-05-03 17:51:56.677' AS DateTime), CAST(N'2017-06-29 10:19:03.113' AS DateTime), CAST(N'2017-06-29 10:01:25.317' AS DateTime), 1, NULL, 1) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (68, NULL, N'freshfields\madeosun', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Moyo Adeosun', N'Moyo.ADEOSUN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:19:26.633' AS DateTime), CAST(N'2017-05-20 12:19:26.633' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (69, NULL, N'freshfields\saiahmed', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Saiqa Ahmed', N'Saiqa.AHMED@freshfields.com', 1, 0, CAST(N'2017-05-20 12:21:38.300' AS DateTime), CAST(N'2017-05-20 12:21:38.300' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (70, NULL, N'freshfields\sakram', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Shezad Akram', N'Shehzad.AKRAM@freshfields.com', 1, 0, CAST(N'2017-05-20 12:22:27.743' AS DateTime), CAST(N'2017-05-20 12:22:27.743' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (71, NULL, N'freshfields\obalson', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Olivia Balson', N'olivia.balson@freshfields.com', 1, 0, CAST(N'2017-05-20 12:23:42.177' AS DateTime), CAST(N'2017-05-20 12:23:42.177' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (72, NULL, N'freshfields\abeadling', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Alexandra Beadling', N'Alexandra.BEADLING@freshfields.com', 1, 0, CAST(N'2017-05-20 12:24:22.863' AS DateTime), CAST(N'2017-05-20 12:24:22.863' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (73, NULL, N'freshfields\sbhamjee', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Sufyaan Bhamjee', N'Sufyaan.BHAMJEE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:25:02.280' AS DateTime), CAST(N'2017-05-20 12:25:02.280' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (74, NULL, N'freshfields\lbrimelow', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Laura Brimelow', N'Laura.BRIMELOW@freshfields.com', 1, 0, CAST(N'2017-05-20 12:25:34.733' AS DateTime), CAST(N'2017-05-20 12:25:34.733' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (75, NULL, N'freshfields\andchan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Andrew Chan', N'Andrew.CHAN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:26:06.187' AS DateTime), CAST(N'2017-05-20 12:26:06.187' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (76, NULL, N'freshfields\acowan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Alastair Cowan', N'Alastair.COWAN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:26:41.380' AS DateTime), CAST(N'2017-05-20 12:26:41.380' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (77, NULL, N'freshfields\tcraddock', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Toby Craddock', N'Toby.CRADDOCK@freshfields.com', 1, 0, CAST(N'2017-05-20 12:27:13.003' AS DateTime), CAST(N'2017-05-20 12:27:13.003' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (78, NULL, N'freshfields\zdabir', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Zainab Dabir', N'Zainab.DABIR@freshfields.com', 1, 0, CAST(N'2017-05-20 12:29:34.393' AS DateTime), CAST(N'2017-05-20 12:29:34.393' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (79, NULL, N'freshfields\adougan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Alasdair Dougan', N'Alasdair.DOUGAN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:30:08.070' AS DateTime), CAST(N'2017-05-20 12:30:08.070' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (80, NULL, N'freshfields\jdowley', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Joseph Dowley', N'Joseph.DOWLEY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:30:49.467' AS DateTime), CAST(N'2017-05-20 12:30:49.467' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (81, NULL, N'freshfields\bellard', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Beth Ellard', N'Beth.ELLARD@freshfields.com', 1, 0, CAST(N'2017-05-20 12:31:28.463' AS DateTime), CAST(N'2017-05-20 12:31:28.463' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (82, NULL, N'freshfields\eeritobor', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Elizabeth Eritobor', N'Elizabeth.Eritobor@freshfields.com', 1, 0, CAST(N'2017-05-20 12:32:08.827' AS DateTime), CAST(N'2017-05-20 12:32:08.827' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (83, NULL, N'freshfields\emgreen', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Emily Green', N'Emily.GREEN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:32:41.567' AS DateTime), CAST(N'2017-05-20 12:32:41.567' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (84, NULL, N'freshfields\zgundersen', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Zoe Gundersen', N'Zoe.GUNDERSEN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:33:18.737' AS DateTime), CAST(N'2017-05-20 12:33:18.737' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (85, NULL, N'freshfields\allyhague', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ally Hague', N'Ally.HAGUE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:35:08.923' AS DateTime), CAST(N'2017-05-20 12:35:08.923' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (86, NULL, N'freshfields\challrutledge', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Chris Hall-Rutledge', N'Christopher.HALL-RUTLEDGE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:35:48.260' AS DateTime), CAST(N'2017-05-20 12:35:48.260' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (87, NULL, N'freshfields\rhaque', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Rizwana Haque', N'Rizwana.HAQUE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:36:33.757' AS DateTime), CAST(N'2017-05-20 12:36:33.757' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (88, NULL, N'freshfields\josharper', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Joshua Harper', N'Joshua.HARPER@freshfields.com', 1, 0, CAST(N'2017-05-20 12:37:09.070' AS DateTime), CAST(N'2017-06-21 10:12:58.477' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (89, NULL, N'freshfields\ahealey', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Abigail Healy', N'Abigail.HEALEY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:37:49.660' AS DateTime), CAST(N'2017-05-20 12:37:49.660' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (90, NULL, N'freshfields\lhibbert', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Laura Hibbert', N'Laura.HIBBERT@freshfields.com', 1, 0, CAST(N'2017-05-20 12:40:11.590' AS DateTime), CAST(N'2017-05-20 12:40:11.590' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (91, NULL, N'freshfields\shu', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Shu Hu', N'Shu.HU@freshfields.com', 1, 0, CAST(N'2017-05-20 12:40:40.013' AS DateTime), CAST(N'2017-05-20 12:40:40.013' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (92, NULL, N'freshfields\mhughes', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Monica Hughes', N'Monica.HUGHES@freshfields.com', 1, 0, CAST(N'2017-05-20 12:41:09.947' AS DateTime), CAST(N'2017-05-20 12:41:09.947' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (93, NULL, N'freshfields\muiqbal', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Mudassar Iqbal', N'Mudassar.IQBAL@freshfields.com', 1, 0, CAST(N'2017-05-20 12:41:42.363' AS DateTime), CAST(N'2017-05-20 12:41:42.363' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (94, NULL, N'freshfields\ajouini', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Amel Jouini', N'Amel.JOUINI@freshfields.com', 1, 0, CAST(N'2017-05-20 12:42:25.823' AS DateTime), CAST(N'2017-05-20 12:42:25.823' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (95, NULL, N'freshfields\nlofthouse', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Niamh Lofthouse', N'Niamh.LOFTHOUSE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:43:03.410' AS DateTime), CAST(N'2017-05-20 12:43:03.410' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (96, NULL, N'freshfields\jmarley', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Josh Marley', N'Josh.MARLEY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:43:38.383' AS DateTime), CAST(N'2017-05-20 12:43:38.383' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (97, NULL, N'freshfields\zmasood', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Zohaib Masood', N'Zohaib.MASOOD@freshfields.com', 1, 0, CAST(N'2017-05-20 12:44:17.020' AS DateTime), CAST(N'2017-05-20 12:44:17.020' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (98, NULL, N'freshfields\tmortimore', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Tom Mortimore', N'Tom.MORTIMORE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:44:47.443' AS DateTime), CAST(N'2017-05-20 12:44:47.443' AS DateTime), NULL, 1, NULL, 0) +GO +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (99, NULL, N'freshfields\smungo', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Stephen Mungo', N'Stephen.MUNGO@freshfields.com', 1, 0, CAST(N'2017-05-20 12:45:20.277' AS DateTime), CAST(N'2017-05-20 12:45:20.277' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (100, NULL, N'freshfields\demurphy', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Devina Murphy', N'Devina.MURPHY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:45:54.640' AS DateTime), CAST(N'2017-05-20 12:45:54.640' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (101, NULL, N'freshfields\samurray', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Sandra Murray', N'Sandra.MURRAY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:46:44.680' AS DateTime), CAST(N'2017-05-20 12:46:44.680' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (102, NULL, N'freshfields\jnewton', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jon Newton', N'Jon.NEWTON@freshfields.com', 1, 0, CAST(N'2017-05-20 12:47:14.517' AS DateTime), CAST(N'2017-05-20 12:47:14.517' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (103, NULL, N'freshfields\tnistor', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Teodora Nistor', N'Teodora.NISTOR@freshfields.com', 1, 0, CAST(N'2017-05-20 12:47:52.240' AS DateTime), CAST(N'2017-05-20 12:47:52.240' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (104, NULL, N'freshfields\daoneill', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'David O''Neill', N'David.ONEILL@freshfields.com', 1, 0, CAST(N'2017-05-20 12:48:29.500' AS DateTime), CAST(N'2017-05-20 12:48:29.500' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (105, NULL, N'freshfields\safpatel', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Safwaan Patel', N'Safwaan.PATEL@freshfields.com', 1, 0, CAST(N'2017-05-20 12:49:07.960' AS DateTime), CAST(N'2017-05-20 12:49:07.960' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (106, NULL, N'freshfields\sanpatel', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Sana Patel', N'Sana.PATEL@freshfields.com', 1, 0, CAST(N'2017-05-20 12:49:37.747' AS DateTime), CAST(N'2017-05-20 12:49:37.747' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (107, NULL, N'freshfields\lpeers', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Laura Peers', N'Laura.PEERS@freshfields.com', 1, 0, CAST(N'2017-05-20 12:50:08.390' AS DateTime), CAST(N'2017-06-28 10:30:05.523' AS DateTime), CAST(N'2017-06-28 10:30:05.327' AS DateTime), 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (108, NULL, N'freshfields\epitcher', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Emma Pitcher', N'Emma.PITCHER@freshfields.com', 1, 0, CAST(N'2017-05-20 12:50:40.570' AS DateTime), CAST(N'2017-05-20 12:50:40.570' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (109, NULL, N'freshfields\droubinowitz', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'David Roubinowitz', N'David.ROUBINOWITZ@freshfields.com', 1, 0, CAST(N'2017-05-20 12:51:16.237' AS DateTime), CAST(N'2017-05-20 12:51:16.237' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (110, NULL, N'freshfields\lsage', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Leonie Sage', N'Leonie.SAGE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:51:51.800' AS DateTime), CAST(N'2017-05-20 12:51:51.800' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (111, NULL, N'freshfields\lsanders', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Laura Sanders', N'Laura.SANDERS@freshfields.com', 1, 0, CAST(N'2017-05-20 12:52:23.817' AS DateTime), CAST(N'2017-05-20 12:52:23.817' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (112, NULL, N'freshfields\ssecretary', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Suraiya Secretary', N'Suraiya.SECRETARY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:52:55.433' AS DateTime), CAST(N'2017-05-20 12:52:55.433' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (113, NULL, N'freshfields\losmith', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Louise Smith', N'Louise.SMITH@freshfields.com', 1, 0, CAST(N'2017-05-20 12:53:23.553' AS DateTime), CAST(N'2017-05-20 12:53:23.553' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (114, NULL, N'freshfields\sstudak', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Sue Studak', N'Sue.STUDAK@freshfields.com', 1, 0, CAST(N'2017-05-20 12:53:50.640' AS DateTime), CAST(N'2017-05-20 12:53:50.640' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (115, NULL, N'freshfields\nitan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Nicole Tan', N'Nicole.TAN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:54:18.267' AS DateTime), CAST(N'2017-05-20 12:54:18.267' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (116, NULL, N'freshfields\litang', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Li Tang', N'Li.TANG@freshfields.com', 1, 0, CAST(N'2017-05-20 12:54:45.213' AS DateTime), CAST(N'2017-05-20 12:54:45.213' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (117, NULL, N'freshfields\lthornsby', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Louise Thornsby', N'Louise.THORNSBY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:55:17.563' AS DateTime), CAST(N'2017-05-20 12:55:17.563' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (118, NULL, N'freshfields\datichbi', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Daniel Tichbi', N'Daniel.TICHBI@freshfields.com', 1, 0, CAST(N'2017-05-20 12:55:50.660' AS DateTime), CAST(N'2017-05-20 12:55:50.660' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (119, NULL, N'freshfields\mtilley', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Matthew Tilley', N'Matthew.TILLEY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:56:20.007' AS DateTime), CAST(N'2017-05-20 12:56:20.007' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (120, NULL, N'freshfields\kturco', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Karin Turco', N'Karin.TURCO@freshfields.com', 1, 0, CAST(N'2017-05-20 12:56:47.430' AS DateTime), CAST(N'2017-05-20 12:56:47.430' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (121, NULL, N'freshfields\dvincent', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Dan Vincent', N'Dan.VINCENT@freshfields.com', 1, 0, CAST(N'2017-05-20 12:57:15.917' AS DateTime), CAST(N'2017-05-20 12:57:15.917' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (122, NULL, N'freshfields\awalton', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Amy Walton', N'Amy.WALTON@freshfields.com', 1, 0, CAST(N'2017-05-20 12:57:43.460' AS DateTime), CAST(N'2017-05-20 12:57:43.460' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (123, NULL, N'freshfields\twang', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Taibo Wang', N'Taibo.WANG@freshfields.com', 1, 0, CAST(N'2017-05-20 12:58:13.630' AS DateTime), CAST(N'2017-05-20 12:58:13.630' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (124, NULL, N'freshfields\jwhalebone', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jamie Whalebone', N'Jamie.WHALEBONE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:58:44.490' AS DateTime), CAST(N'2017-05-20 12:58:44.490' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (125, NULL, N'freshfields\myarwood', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Matthew Yarwood', N'Matthew.YARWOOD@freshfields.com', 1, 0, CAST(N'2017-05-20 12:59:17.643' AS DateTime), CAST(N'2017-05-20 12:59:17.643' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (126, NULL, N'freshfields\jayang', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jasmine Yang', N'Jasmine.YANG@freshfields.com', 1, 0, CAST(N'2017-05-20 12:59:57.517' AS DateTime), CAST(N'2017-05-20 12:59:57.517' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (127, NULL, N'freshfields\eyao', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Eva Yao', N'Eva.YAO@freshfields.com', 1, 0, CAST(N'2017-05-20 13:00:26.150' AS DateTime), CAST(N'2017-05-20 13:00:26.150' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (128, NULL, N'freshfields\archou', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ariel Chou', N'Ariel.CHOU@freshfields.com', 1, 0, CAST(N'2017-05-20 13:00:52.127' AS DateTime), CAST(N'2017-05-20 13:00:52.127' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (129, NULL, N'freshfields\iaadams', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ian Adams', N'Ian.ADAMS@freshfields.com', 1, 0, CAST(N'2017-05-20 13:06:07.697' AS DateTime), CAST(N'2017-05-20 13:06:07.697' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (130, NULL, N'freshfields\vibarthel', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Vincent Barthel', N'Vincent.BARTHEL@freshfields.com', 1, 1, CAST(N'2017-05-20 13:06:35.473' AS DateTime), CAST(N'2017-05-20 13:06:35.473' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (131, NULL, N'freshfields\lbowes', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Lola Bowes', N'lola.bowes@freshfields.com', 1, 0, CAST(N'2017-05-20 13:07:00.533' AS DateTime), CAST(N'2017-05-20 13:07:00.533' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (132, NULL, N'freshfields\scallaghan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Steph Callaghan', N'Steph.CALLAGHAN@freshfields.com', 1, 0, CAST(N'2017-05-20 13:07:31.293' AS DateTime), CAST(N'2017-05-20 13:07:31.293' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (133, NULL, N'freshfields\mcaulfield', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Mardi-Louise Caulfield', N'Mardi-Louise.CAULFIELD@freshfields.com', 1, 0, CAST(N'2017-05-20 13:08:14.483' AS DateTime), CAST(N'2017-05-20 13:08:14.483' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (134, NULL, N'freshfields\gcox', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Gayle Cox', N'Gayle.COX@freshfields.com', 1, 0, CAST(N'2017-05-20 13:08:41.340' AS DateTime), CAST(N'2017-05-20 13:08:41.340' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (135, NULL, N'freshfields\jellison', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jack Ellison', N'Jack.ELLISON@freshfields.com', 1, 0, CAST(N'2017-05-20 13:09:13.280' AS DateTime), CAST(N'2017-05-20 13:09:13.280' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (136, NULL, N'freshfields\kgleave', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Kerry Gleave', N'Kerry.GLEAVE@freshfields.com', 1, 0, CAST(N'2017-05-20 13:09:42.517' AS DateTime), CAST(N'2017-05-20 13:09:42.517' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (137, NULL, N'freshfields\ngoldenbaum', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Nina Goldenbaum', N'Nina.GOLDENBAUM@freshfields.com', 1, 1, CAST(N'2017-05-20 13:10:17.530' AS DateTime), CAST(N'2017-05-20 13:10:17.530' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (138, NULL, N'freshfields\ugrasselt', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ute Grasselt', N'Ute.GRASSELT@freshfields.com', 1, 1, CAST(N'2017-05-20 13:10:50.693' AS DateTime), CAST(N'2017-05-20 13:10:50.693' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (139, NULL, N'freshfields\cgrunow', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Christian Grunow', N'Christian.GRUNOW@freshfields.com', 1, 1, CAST(N'2017-05-20 13:11:26.880' AS DateTime), CAST(N'2017-05-20 13:11:26.880' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (140, NULL, N'freshfields\ahardman', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Adele Hardman', N'Adele.HARDMAN@freshfields.com', 1, 0, CAST(N'2017-05-20 13:11:54.953' AS DateTime), CAST(N'2017-05-20 13:11:54.953' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (141, NULL, N'Freshfields\gkucia', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Grazynahelena Kucia', N'Grazynahelena.KUCIA@freshfields.com', 1, 1, CAST(N'2017-05-20 13:12:24.623' AS DateTime), CAST(N'2017-05-20 13:12:24.623' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (142, NULL, N'freshfields\katlis', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Katrin Lis', N'Katrin.LIS@freshfields.com', 1, 1, CAST(N'2017-05-20 13:12:59.747' AS DateTime), CAST(N'2017-05-20 13:12:59.747' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (143, NULL, N'freshfields\amaccabe', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Amanda MacCabe', N'Amanda.MACCABE@freshfields.com', 1, 0, CAST(N'2017-05-20 13:13:46.173' AS DateTime), CAST(N'2017-05-20 13:13:46.173' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (144, NULL, N'freshfields\hmawdsley', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Helen Mawdsley', N'Helen.MAWDSLEY@freshfields.com', 1, 0, CAST(N'2017-05-20 13:14:19.200' AS DateTime), CAST(N'2017-05-20 13:14:19.200' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (145, NULL, N'freshfields\jmcadam', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jacqueline McAdam', N'Jacqueline.MCADAM@freshfields.com', 1, 0, CAST(N'2017-05-20 13:14:50.637' AS DateTime), CAST(N'2017-05-20 13:14:50.637' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (146, NULL, N'freshfields\kmonk', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Kerry Monk', N'Kerry.MONK@freshfields.com', 1, 0, CAST(N'2017-05-20 13:15:16.763' AS DateTime), CAST(N'2017-05-20 13:15:16.763' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (147, NULL, N'freshfields\dnorth', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Daniel North', N'Daniel.NORTH@freshfields.com', 1, 0, CAST(N'2017-05-20 13:15:39.030' AS DateTime), CAST(N'2017-05-20 13:15:39.030' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (148, NULL, N'freshfields\goakes', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Gill Oakes', N'Gill.OAKES@freshfields.com', 1, 0, CAST(N'2017-05-20 13:16:05.840' AS DateTime), CAST(N'2017-05-20 13:16:05.840' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (149, NULL, N'freshfields\soelckers', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Stefan Oelckers', N'Stefan.OELCKERS@freshfields.com', 1, 1, CAST(N'2017-05-20 13:16:36.553' AS DateTime), CAST(N'2017-05-20 13:16:36.553' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (150, NULL, N'freshfields\jorme', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jan Orme', N'Jan.ORME@freshfields.com', 1, 0, CAST(N'2017-05-20 13:17:05.363' AS DateTime), CAST(N'2017-05-20 13:17:05.363' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (151, NULL, N'freshfields\ypercival', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Yvonne Percival', N'Yvonne.PERCIVAL@freshfields.com', 1, 0, CAST(N'2017-05-20 13:17:34.057' AS DateTime), CAST(N'2017-05-20 13:17:34.057' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (152, NULL, N'freshfields\tpettit', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Toni Pettit', N'toni.pettit@freshfields.com', 1, 0, CAST(N'2017-05-20 13:17:58.660' AS DateTime), CAST(N'2017-05-20 13:17:58.660' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (153, NULL, N'freshfields\rorowe', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Robert Rowe', N'Robert.ROWE@freshfields.com', 1, 0, CAST(N'2017-05-20 13:18:27.650' AS DateTime), CAST(N'2017-05-20 13:18:27.650' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (154, NULL, N'freshfields\groyle', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Gareth Royle', N'Gareth.ROYLE@freshfields.com', 1, 0, CAST(N'2017-05-20 13:18:56.047' AS DateTime), CAST(N'2017-05-20 13:18:56.047' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (155, NULL, N'freshfields\sroyle', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Stuart Royle', N'Stuart.ROYLE@freshfields.com', 1, 0, CAST(N'2017-05-20 13:19:25.360' AS DateTime), CAST(N'2017-05-20 13:19:25.360' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (156, NULL, N'freshfields\jsandilands', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Janet Sandilands', N'Janet.SANDILANDS@freshfields.com', 1, 0, CAST(N'2017-05-20 13:20:00.277' AS DateTime), CAST(N'2017-05-20 13:20:00.277' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (157, NULL, N'freshfields\dschmale', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Diana Schmale', N'Diana.SCHMALE@freshfields.com', 1, 1, CAST(N'2017-05-20 13:20:28.470' AS DateTime), CAST(N'2017-05-20 13:20:28.470' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (158, NULL, N'freshfields\jscholes', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jayne Scholes', N'Jayne.SCHOLES@freshfields.com', 1, 0, CAST(N'2017-05-20 13:20:55.547' AS DateTime), CAST(N'2017-05-20 13:20:55.547' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (159, NULL, N'freshfields\jsteuer', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jacqueline Steuer', N'Jacqueline.STEUER@freshfields.com', 1, 1, CAST(N'2017-05-20 13:21:23.827' AS DateTime), CAST(N'2017-05-20 13:21:23.827' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (160, NULL, N'freshfields\hteixeira', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Helga Teixeira', N'Helga.TEIXEIRA@freshfields.com', 1, 1, CAST(N'2017-05-20 13:22:05.173' AS DateTime), CAST(N'2017-05-20 13:22:05.173' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (161, NULL, N'freshfields\oterhaar', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Oliver ter Haar', N'Oliver.TERHAAR@freshfields.com', 1, 1, CAST(N'2017-05-20 13:22:46.700' AS DateTime), CAST(N'2017-05-20 13:23:30.187' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (162, NULL, N'freshfields\vtetali', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Venu Tetali', N'Venu.TETALI@freshfields.com', 1, 0, CAST(N'2017-05-20 13:24:23.160' AS DateTime), CAST(N'2017-05-20 13:24:23.160' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (163, NULL, N'freshfields\gtheisen', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Gabriele Theisen', N'gabriele.theisen@freshfields.com', 1, 1, CAST(N'2017-05-20 13:24:55.857' AS DateTime), CAST(N'2017-05-20 13:24:55.857' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (164, NULL, N'freshfields\pevuorela', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Peter Vuorela', N'Peter.VUORELA@freshfields.com', 1, 0, CAST(N'2017-05-20 13:25:28.933' AS DateTime), CAST(N'2017-05-20 13:25:28.933' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (165, NULL, N'freshfields\mwhittaker', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Michael Whittaker', N'michael.WHITTAKER@freshfields.com', 1, 1, CAST(N'2017-05-20 13:26:01.563' AS DateTime), CAST(N'2017-05-20 13:26:01.563' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (166, NULL, N'freshfields\jzinowko', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Joanna Zinowko', N'Joanna.ZINOWKO@freshfields.com', 1, 0, CAST(N'2017-05-20 13:26:32.537' AS DateTime), CAST(N'2017-05-20 13:26:32.537' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (167, NULL, N'freshfields\pcaruana', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Pia Caruana', N'pia.caruana@freshfields.com', 1, 0, CAST(N'2017-06-09 12:30:37.730' AS DateTime), CAST(N'2017-06-29 14:55:45.007' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (168, 2, N'freshfields\mattaylor', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Matthew Taylor', N'Matthew.TAYLOR@freshfields.com', 1, 0, CAST(N'2017-06-15 14:11:56.073' AS DateTime), CAST(N'2017-06-29 10:16:24.427' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (169, 2, N'freshfields\bhxpatel', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Bhavin Patel', N'Bhavin.PATEL@freshfields.com', 1, 0, CAST(N'2017-06-15 14:13:00.580' AS DateTime), CAST(N'2017-06-30 18:12:02.867' AS DateTime), CAST(N'2017-06-28 12:38:36.877' AS DateTime), 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (170, NULL, N'freshfields\vibarthel', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Vincent Barthel', N'Vincent.BARTHEL@freshfields.com', 1, 0, CAST(N'2017-06-17 14:22:44.710' AS DateTime), CAST(N'2017-06-17 14:22:44.710' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (171, NULL, N'freshfields\ngoldenbaum', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Nina Goldenbaum', N'Nina.GOLDENBAUM@freshfields.com', 1, 0, CAST(N'2017-06-17 14:24:33.373' AS DateTime), CAST(N'2017-06-17 14:24:33.373' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (172, NULL, N'freshfields\ugrasselt', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ute Grasselt', N'Ute.GRASSELT@freshfields.com', 1, 0, CAST(N'2017-06-17 14:25:10.963' AS DateTime), CAST(N'2017-06-17 14:25:10.963' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (173, NULL, N'freshfields\cgrunow', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Christian Grunow', N'Christian.GRUNOW@freshfields.com', 1, 0, CAST(N'2017-06-17 14:25:54.803' AS DateTime), CAST(N'2017-06-17 14:26:10.773' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (174, NULL, N'freshfields\gkucia', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Grazyna Helena Kucia', N'Grazynahelena.KUCIA@freshfields.com', 1, 0, CAST(N'2017-06-17 14:26:55.623' AS DateTime), CAST(N'2017-06-17 14:26:55.623' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (175, NULL, N'freshfields\katlis', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Katrin Lis', N'Katrin.LIS@freshfields.com', 1, 0, CAST(N'2017-06-17 14:27:25.140' AS DateTime), CAST(N'2017-06-17 14:27:25.140' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (176, NULL, N'freshfields\soelckers', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Stefan Oelckers', N'Stefan.OELCKERS@freshfields.com', 1, 0, CAST(N'2017-06-17 14:28:07.330' AS DateTime), CAST(N'2017-06-17 14:28:07.330' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (177, NULL, N'freshfields\dschmale', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Diana Schmale', N'Diana.SCHMALE@freshfields.com', 1, 0, CAST(N'2017-06-17 14:28:35.150' AS DateTime), CAST(N'2017-06-17 14:28:35.150' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (178, NULL, N'freshfields\jsteuer', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jacqueline Steuer', N'Jacqueline.STEUER@freshfields.com', 1, 0, CAST(N'2017-06-17 14:35:13.227' AS DateTime), CAST(N'2017-06-17 14:35:13.227' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (179, NULL, N'freshfields\hteixeira', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Helga Teixeira', N'Helga.TEIXEIRA@freshfields.com', 1, 0, CAST(N'2017-06-17 14:35:55.077' AS DateTime), CAST(N'2017-06-17 14:35:55.077' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (180, NULL, N'freshfields\oterhaar', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Oliver ter Haar', N'Oliver.TERHAAR@freshfields.com', 1, 0, CAST(N'2017-06-17 14:36:38.290' AS DateTime), CAST(N'2017-06-17 14:36:38.290' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (181, NULL, N'freshfields\gtheisen', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Gabriele Theisen', N'gabriele.theisen@freshfields.com', 1, 0, CAST(N'2017-06-17 14:37:35.733' AS DateTime), CAST(N'2017-06-17 14:37:35.733' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (182, NULL, N'freshfields\RDEASESMITH', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ruth Dease-Smith', N'ruth.dease@freshfields.com', 1, 0, CAST(N'2017-06-17 14:39:58.973' AS DateTime), CAST(N'2017-06-17 14:40:56.100' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (183, NULL, N'freshfields\hgeiger', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Heidi Geiger', N'heidi.geiger@freshfields.com', 1, 0, CAST(N'2017-06-17 14:40:39.640' AS DateTime), CAST(N'2017-06-17 14:40:39.640' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (184, NULL, N'freshfields\jlipari', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Josephine Lipari', N'josephine.lipari@freshfields.com', 1, 0, CAST(N'2017-06-17 14:41:32.090' AS DateTime), CAST(N'2017-06-17 14:41:32.090' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (185, NULL, N'freshfields\gvarga', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Gail Varga', N'gail.varga@freshfields.com', 1, 0, CAST(N'2017-06-17 14:42:00.530' AS DateTime), CAST(N'2017-06-17 14:42:00.530' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (186, 3, N'freshfields\mihoward', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Mike Howard', N'Mike.HOWARD@freshfields.com', 1, 0, CAST(N'2017-06-21 09:47:33.963' AS DateTime), CAST(N'2017-06-21 10:40:39.313' AS DateTime), CAST(N'2017-06-21 10:40:39.233' AS DateTime), 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (187, NULL, N'freshfields\romurray', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Robert Murray', N'Robert.Murray@freshfields.com', 1, 0, CAST(N'2017-06-21 09:55:42.857' AS DateTime), CAST(N'2017-06-21 10:04:00.467' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (188, NULL, N'freshfields\dseshie', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Daniel Seshie-Cottrell', N'Daniel.Seshie-Cottrell@freshfields.com', 1, 0, CAST(N'2017-06-21 10:12:31.217' AS DateTime), CAST(N'2017-06-21 10:12:31.217' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (189, NULL, N'freshfields\ccarruthers', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Chris Carruthers', N'Chris.Carruthers@freshfields.com', 1, 0, CAST(N'2017-06-21 10:18:12.553' AS DateTime), CAST(N'2017-06-21 10:20:13.523' AS DateTime), CAST(N'2017-06-21 10:20:13.467' AS DateTime), 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (190, NULL, N'freshfields\aldawson', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Alex Dawson', N'Alex.Dawson@freshfields.com', 1, 1, CAST(N'2017-06-21 10:40:00.390' AS DateTime), CAST(N'2017-06-30 10:12:29.293' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (191, NULL, N'freshfields\agarciasuarez', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Ana Suarez', N'Ana.SUAREZ@freshfields.com', 1, 0, CAST(N'2017-06-21 14:56:01.133' AS DateTime), CAST(N'2017-06-21 14:56:01.133' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (192, NULL, N'freshfields\aadma', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Ashwin Adma', N'Ashwin.Adma@freshfields.com', 1, 0, CAST(N'2017-06-21 14:56:59.887' AS DateTime), CAST(N'2017-06-26 17:45:29.160' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (193, NULL, N'freshfields\chmurray', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Chris Murray', N'Chris.Murray@freshfields.com', 1, 0, CAST(N'2017-06-21 15:16:39.967' AS DateTime), CAST(N'2017-06-21 15:16:39.967' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (194, NULL, N'freshfields\ddelaflor', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Daniel de la Flor', N'Daniel.DELAFLOR@freshfields.com', 1, 0, CAST(N'2017-06-21 15:17:49.830' AS DateTime), CAST(N'2017-06-21 15:17:49.830' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (195, NULL, N'freshfields\edarosa', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Eduardo Da Rosa', N'Eduardo.DAROSA@freshfields.com', 1, 0, CAST(N'2017-06-21 15:18:30.420' AS DateTime), CAST(N'2017-06-21 15:18:30.420' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (196, NULL, N'freshfields\gcooke', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Graham Cooke', N'Graham.Cooke@freshfields.com', 1, 0, CAST(N'2017-06-21 15:19:43.020' AS DateTime), CAST(N'2017-06-21 15:19:43.020' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (197, NULL, N'freshfields\ipatrick', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Ian Patrick', N'Ian.Patrick@freshfields.com', 1, 0, CAST(N'2017-06-21 15:23:58.873' AS DateTime), CAST(N'2017-06-21 15:23:58.873' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (198, NULL, N'freshfields\imohammed', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Imran Mohammed', N'Imran.Mohammed@freshfields.com', 1, 0, CAST(N'2017-06-21 15:27:01.893' AS DateTime), CAST(N'2017-06-21 15:27:01.893' AS DateTime), NULL, 1, NULL, 0) +GO +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (199, NULL, N'freshfields\jaellis', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'James Ellis', N'James.Ellis@freshfields.com', 1, 0, CAST(N'2017-06-21 15:27:42.097' AS DateTime), CAST(N'2017-06-30 13:46:12.690' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (200, NULL, N'freshfields\jlandy', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'John Landy', N'John.Landy@freshfields.com', 1, 0, CAST(N'2017-06-21 15:28:33.893' AS DateTime), CAST(N'2017-06-21 15:28:33.893' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (201, NULL, N'freshfields\jjaved', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Junaid Javed', N'Junaid.Javed@freshfields.com', 1, 0, CAST(N'2017-06-21 15:29:34.230' AS DateTime), CAST(N'2017-06-21 15:29:34.230' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (202, NULL, N'freshfields\kang', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Karl Ng', N'Karl.Ng@freshfields.com', 1, 0, CAST(N'2017-06-21 15:37:35.077' AS DateTime), CAST(N'2017-06-21 15:37:35.077' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (203, NULL, N'freshfields\lkodym', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Lukas Kodym', N'Lukas.Kodym@freshfields.com', 1, 0, CAST(N'2017-06-21 15:38:37.043' AS DateTime), CAST(N'2017-06-21 15:38:37.043' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (204, NULL, N'freshfields\marjones', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Marion Jones', N'Marion.Jones@freshfields.com', 1, 0, CAST(N'2017-06-22 09:23:51.353' AS DateTime), CAST(N'2017-06-22 09:23:51.353' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (205, NULL, N'freshfields\morahman', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Mo Rahman', N'Mo.Rahman@freshfields.com', 1, 0, CAST(N'2017-06-22 09:27:37.810' AS DateTime), CAST(N'2017-06-22 09:27:37.810' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (206, NULL, N'freshfields\osliz', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Otto Sliz', N'Otto.Sliz@freshfields.com', 1, 0, CAST(N'2017-06-22 09:28:18.650' AS DateTime), CAST(N'2017-06-22 09:28:18.650' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (207, NULL, N'freshfields\pbretherton', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Patrick Bretherton', N'Patrick.Bretherton@freshfields.com', 1, 0, CAST(N'2017-06-22 09:29:09.740' AS DateTime), CAST(N'2017-06-22 09:29:09.740' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (208, NULL, N'freshfields\rsmithson', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Patrick Bretherton', N'Patrick.Bretherton@freshfields.com', 1, 0, CAST(N'2017-06-22 09:30:35.130' AS DateTime), CAST(N'2017-06-22 09:30:35.130' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (209, NULL, N'freshfields\sahmed', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Saleem Ahmed', N'Saleem.Ahmed@freshfields.com', 1, 0, CAST(N'2017-06-22 09:31:48.110' AS DateTime), CAST(N'2017-06-22 09:31:48.110' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (210, NULL, N'freshfields\swadsworth', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Scott Wadsworth', N'Scott.Wadsworth@freshfields.com', 1, 0, CAST(N'2017-06-22 09:32:39.223' AS DateTime), CAST(N'2017-06-22 09:32:39.223' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (211, NULL, N'freshfields\sarmitt', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Simon Armitt', N'Simon.Armitt@freshfields.com', 1, 0, CAST(N'2017-06-22 09:33:11.490' AS DateTime), CAST(N'2017-06-22 09:33:11.490' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (212, NULL, N'freshfields\stcarter', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Stephen Carter', N'Stephen.Carter@freshfields.com', 1, 0, CAST(N'2017-06-22 09:34:20.300' AS DateTime), CAST(N'2017-06-30 10:12:39.853' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (213, NULL, N'freshfields\tipoon', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Tim Poon', N'Tim.Poon@freshfields.com', 1, 0, CAST(N'2017-06-22 09:34:53.593' AS DateTime), CAST(N'2017-06-22 09:34:53.593' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (214, NULL, N'freshfields\umunshi', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Umair Munshi', N'Umair.Munshi@freshfields.com', 1, 0, CAST(N'2017-06-22 09:35:39.183' AS DateTime), CAST(N'2017-06-22 09:35:39.183' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (215, NULL, N'freshfields\uliaqat', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Usmaan Liaqat', N'Usmaan.Liaqat@freshfields.com', 1, 0, CAST(N'2017-06-22 09:38:34.070' AS DateTime), CAST(N'2017-06-22 09:38:34.070' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (216, NULL, N'freshfields\aahmad', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Asif Ahmad', N'Asif.Ahmad@freshfields.com', 1, 0, CAST(N'2017-06-22 09:39:57.477' AS DateTime), CAST(N'2017-06-22 09:39:57.477' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (217, NULL, N'freshfields\lgreenwood', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Lewis Greenwood', N'Lewis.Greenwood@freshfields.com', 1, 0, CAST(N'2017-06-22 09:40:27.880' AS DateTime), CAST(N'2017-06-22 09:40:27.880' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (218, NULL, N'freshfields\jdaine', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'James Daine', N'James.Daine@freshfields.com', 1, 0, CAST(N'2017-06-22 09:41:08.537' AS DateTime), CAST(N'2017-06-22 09:41:08.537' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (219, NULL, N'freshfields\nanwar', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Naveed Anwar', N'Naveed.Anwar@freshfields.com', 1, 0, CAST(N'2017-06-22 09:41:41.893' AS DateTime), CAST(N'2017-06-22 09:41:41.893' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (220, NULL, N'freshfields\lrhodes', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Liam Rhodes', N'Liam.Rhodes@freshfields.com', 1, 0, CAST(N'2017-06-22 09:42:15.350' AS DateTime), CAST(N'2017-06-22 09:42:15.350' AS DateTime), NULL, 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (221, 1, N'freshfields\matjohnson', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Matthew Johnson', N'Matthew.JOHNSON@freshfields.com', 1, 0, CAST(N'2017-06-29 08:45:41.460' AS DateTime), CAST(N'2017-06-30 17:10:02.693' AS DateTime), CAST(N'2017-06-30 17:10:02.480' AS DateTime), 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (222, NULL, N'freshfields\zeshah', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Zeshan Shah', N'Zeshan.SHAH@freshfields.com', 1, 0, CAST(N'2017-06-29 13:38:50.303' AS DateTime), CAST(N'2017-06-29 18:29:58.900' AS DateTime), CAST(N'2017-06-29 18:29:58.817' AS DateTime), 1, NULL, 0) +INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (223, NULL, N'freshfields\aldawson', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Alex Dawson', N'Alex.Dawson@freshfields.com', 1, 0, CAST(N'2017-06-30 14:06:49.360' AS DateTime), CAST(N'2017-06-30 14:06:49.360' AS DateTime), NULL, 1, NULL, 0) +SET IDENTITY_INSERT [dbo].[ApplicationUsers] OFF + + +SET IDENTITY_INSERT [dbo].[EntityRelationshipTypes] ON + +INSERT [dbo].[EntityRelationshipTypes] ([EntityRelationshipTypeId], [Description], [PrimaryType], [SubordinateType], [IsDirectRelationshipValidated], [IsSharedRelationshipValidated]) VALUES (1, N'Lawyer Secretary Pairing', N'Lawyer', N'Secretary', 1, 1) +SET IDENTITY_INSERT [dbo].[EntityRelationshipTypes] OFF +INSERT [dbo].[WallCustomFieldConfig] ([Field], [DisplayName], [IsRequired], [Type], [Description], [PolicyCategoryGroupId]) VALUES (N'CustomField1', N'Originating Office', 0, N'ENUM', N'Originating Office', 1) +INSERT [dbo].[WallCustomFieldConfig] ([Field], [DisplayName], [IsRequired], [Type], [Description], [PolicyCategoryGroupId]) VALUES (N'CustomField1', N'Originating Office', 0, N'ENUM', N'Originating Office', 3) diff --git a/modules/sqlserver_install/templates/script_walls_finalizing.sql.erb b/modules/sqlserver_install/templates/script_walls_finalizing.sql.erb new file mode 100644 index 0000000..9446b8f --- /dev/null +++ b/modules/sqlserver_install/templates/script_walls_finalizing.sql.erb @@ -0,0 +1,1600 @@ +USE [<%=@sqlserverdbname%>] +GO + +/****** Object: Index [IX_TrackerAlertDetails_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerAlertDetails_1] ON [dbo].[AlertDetails] +( + [AlertId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_CustomFields_FieldId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_CustomFields_FieldId] ON [dbo].[AlertDetailsCustomFields] +( + [FieldId] ASC, + [RepositoryTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_CustomFields_FieldName] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_CustomFields_FieldName] ON [dbo].[AlertDetailsCustomFields] +( + [FieldName] ASC, + [RepositoryTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerAlerts_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerAlerts_1] ON [dbo].[Alerts] +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_AttorneyAcknowledgments_WallSideId_isAcknowledged_isArchived] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_AttorneyAcknowledgments_WallSideId_isAcknowledged_isArchived] ON [dbo].[AttorneyAcknowledgments] +( + [WallSideId] ASC, + [isAcknowledged] ASC, + [isArchived] ASC +) +INCLUDE ( [EntityId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Config_ConfigVariable] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_Config_ConfigVariable] ON [dbo].[Config] +( + [ConfigVariable] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_1] ON [dbo].[Entities] +( + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_2] ON [dbo].[Entities] +( + [EntityRemoteSystemId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_3] ON [dbo].[Entities] +( + [ParentRemoteSystemId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_4] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_4] ON [dbo].[Entities] +( + [IsEnabledForSearch] ASC, + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_5] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_5] ON [dbo].[Entities] +( + [MatterTeamEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_6] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_6] ON [dbo].[Entities] +( + [WindowsNetworkLogon] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_7] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_7] ON [dbo].[Entities] +( + [Modified] DESC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_EntityDisplayId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_EntityDisplayId] ON [dbo].[Entities] +( + [EntityDisplayId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_EntityCustomFieldConfig_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_EntityCustomFieldConfig_1] ON [dbo].[EntityCustomFieldConfig] +( + [EntityTypeId] ASC, + [DisplayName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_EntityKeyMap_ParentEntityId_IsActive] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_EntityKeyMap_ParentEntityId_IsActive] ON [dbo].[EntityKeyMap] +( + [ParentEntityId] ASC, + [IsActive] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ErrorLog_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ErrorLog_1] ON [dbo].[ErrorLog] +( + [ServiceType] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ErrorLog_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ErrorLog_2] ON [dbo].[ErrorLog] +( + [LogLevel] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ErrorLog_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ErrorLog_3] ON [dbo].[ErrorLog] +( + [Created] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ExtensionQueryResults_RequestId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ExtensionQueryResults_RequestId] ON [dbo].[ExtensionQueryResults] +( + [RequestId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ExtensionServiceJobs_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ExtensionServiceJobs_1] ON [dbo].[ExtensionServiceJobs] +( + [ExtensionServiceName] ASC, + [ExtensionType] ASC, + [LibraryName] ASC, + [FinalStatus] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [ExternalUsersAccessHistory_SearchFields] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [ExternalUsersAccessHistory_SearchFields] ON [dbo].[ExternalUsersAccessHistory] +( + [MatterEntityId] ASC, + [ExternalUserEntityId] ASC, + [ActivityType] ASC, + [ActivityDate] ASC +) +INCLUDE ( [AccessHistoryId], + [ActivityReason]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_InsidersReports_MatterEntityID] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_InsidersReports_MatterEntityID] ON [dbo].[InsidersReports] +( + [MatterEntityID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Log_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Log_1] ON [dbo].[Log] +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Log_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Log_2] ON [dbo].[Log] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Log_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Log_3] ON [dbo].[Log] +( + [LogMessageType] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamHistories] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamHistories] ON [dbo].[MatterTeamHistories] +( + [MatterEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamHistories_UserEntityId_IsActive_MatterEntityId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamHistories_UserEntityId_IsActive_MatterEntityId] ON [dbo].[MatterTeamHistories] +( + [UserEntityId] ASC, + [IsActive] ASC, + [MatterEntityId] ASC +) +INCLUDE ( [MatterTeamHistoryId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamSubscriptionRequests_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamSubscriptionRequests_1] ON [dbo].[MatterTeamSubscriptionRequests] +( + [MatterTeamId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamSubscriptionRequests_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamSubscriptionRequests_2] ON [dbo].[MatterTeamSubscriptionRequests] +( + [UserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamSubscriptionRequests_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamSubscriptionRequests_3] ON [dbo].[MatterTeamSubscriptionRequests] +( + [AdminEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Notifications] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Notifications] ON [dbo].[Notifications] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ObjectReleaseExceptions_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_1] ON [dbo].[ObjectReleaseExceptions] +( + [ExtensionType] ASC, + [LibraryName] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ObjectReleaseExceptions_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_2] ON [dbo].[ObjectReleaseExceptions] +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ObjectReleaseExceptions_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_3] ON [dbo].[ObjectReleaseExceptions] +( + [ExpirationDate] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ObjectReleaseExceptions_4] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_4] ON [dbo].[ObjectReleaseExceptions] +( + [ObjectId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [PermanentInsidersAccessHistory_SearchFields] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [PermanentInsidersAccessHistory_SearchFields] ON [dbo].[PermanentInsidersAccessHistory] +( + [UserEntityId] ASC, + [ActivityType] ASC, + [ActivityDate] ASC +) +INCLUDE ( [AccessHistoryId], + [ActivityReason]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportFields_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportFields_1] ON [dbo].[ReportFields] +( + [ReportTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Reports] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Reports] ON [dbo].[Reports] +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportSchedules_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportSchedules_1] ON [dbo].[ReportSchedules] +( + [ReportID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportSchedules_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportSchedules_3] ON [dbo].[ReportSchedules] +( + [IsEnabled] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportSchedules_4] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportSchedules_4] ON [dbo].[ReportSchedules] +( + [NextTimeDue] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_SummaryDetails_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_SummaryDetails_1] ON [dbo].[SummaryDetails] +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerClientsAndMatters_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerClientsAndMatters_1] ON [dbo].[TrackerClientsAndMatters] +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerExecutionClientsAndMatters_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerExecutionClientsAndMatters_1] ON [dbo].[TrackerExecutionClientsAndMatters] +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerExecutions_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerExecutions_1] ON [dbo].[TrackerExecutions] +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Thresholds_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Thresholds_1] ON [dbo].[Trackers] +( + [Modified] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Thresholds_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Thresholds_2] ON [dbo].[Trackers] +( + [IsDeleted] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Thresholds_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Thresholds_3] ON [dbo].[Trackers] +( + [IsEnabled] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ThresholdWatchList_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ThresholdWatchList_1] ON [dbo].[TrackerWatchList] +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WallCustomFieldConfig_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_WallCustomFieldConfig_1] ON [dbo].[WallCustomFieldConfig] +( + [DisplayName] ASC, + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WallRoles_Name] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallRoles_Name] ON [dbo].[WallRoles] +( + [WallRoleName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Walls_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Walls_1] ON [dbo].[Walls] +( + [CreatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Walls_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Walls_2] ON [dbo].[Walls] +( + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [UIX_Walls_FoundationalGroupId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [UIX_Walls_FoundationalGroupId] ON [dbo].[Walls] +( + [FoundationalGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WallSecurityStatus_Entity] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSecurityStatus_Entity] ON [dbo].[WallSecurityStatus] +( + [EntityId] ASC +) +INCLUDE ( [WallId], + [Status]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSecurityStatus_WallId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSecurityStatus_WallId] ON [dbo].[WallSecurityStatus] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSecurityStatus_WallSecurityStatusId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSecurityStatus_WallSecurityStatusId] ON [dbo].[WallSecurityStatus] +( + [WallSecurityStatusId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSideEntities_EntityIdsForWallId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSideEntities_EntityIdsForWallId] ON [dbo].[WallSideEntities] +( + [WallId] ASC +) +INCLUDE ( [WallSideId], + [EntityId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSideEntities_WasAddedBySelfMaintaining] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSideEntities_WasAddedBySelfMaintaining] ON [dbo].[WallSideEntities] +( + [WasAddedBySelfMaintaining] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSides] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSides] ON [dbo].[WallSides] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Widget_Name] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_Widget_Name] ON [dbo].[Widget] +( + [Name] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WidgetZone] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_WidgetZone] ON [dbo].[WidgetZone] +( + [Title] ASC, + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +ALTER TABLE [dbo].[AlertDetails] ADD CONSTRAINT [DF_AlertDetails_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_IsEnabled] DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_CreationDate] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_ModifiedTime] DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD DEFAULT ((0)) FOR [InsidersModuleAccess] +GO +ALTER TABLE [dbo].[Attachments] ADD CONSTRAINT [DF_Attachments_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] ADD DEFAULT ((0)) FOR [isAcknowledged] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] ADD DEFAULT ((0)) FOR [isArchived] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] ADD CONSTRAINT [DF_DynamicEntityGroupExceptions_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] ADD CONSTRAINT [DF_DynamicEntityGroupExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[Entities] ADD DEFAULT ((1)) FOR [IsEnabledForSearch] +GO +ALTER TABLE [dbo].[Entities] ADD DEFAULT ((1)) FOR [NotificationRoleId] +GO +ALTER TABLE [dbo].[EntitiesMatterTeamFields] ADD DEFAULT ((0)) FOR [IsRelationshipPaired] +GO +ALTER TABLE [dbo].[EntitiesUserFields] ADD DEFAULT ((0)) FOR [IsExceptedFromActiveDirectoryGroups] +GO +ALTER TABLE [dbo].[EntitiesUserFields] ADD DEFAULT ((0)) FOR [IsExceptedFromJoiningMatterTeam] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT ('Custom Field') FOR [Description] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsIncludedInNotifications] DEFAULT ((0)) FOR [IsIncludedInNotifications] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT ((1)) FOR [IsIncludedInEntityTooltip] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsMultiValued] DEFAULT ((0)) FOR [IsMultiValued] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsIncludedInExtendedValidation] DEFAULT ((0)) FOR [IsIncludedInExtendedValidation] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT ((1)) FOR [IsIncludedInGeneralInformation] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsConfidential] DEFAULT ((0)) FOR [IsConfidential] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT (NULL) FOR [DateTimeFormat] +GO +ALTER TABLE [dbo].[EntityKeyMap] ADD CONSTRAINT [DF_EntityKeyMap_IsActive] DEFAULT ((1)) FOR [IsActive] +GO +ALTER TABLE [dbo].[EntityKeyMap] ADD CONSTRAINT [DF_EntityKeyMap_IsMTHistoryConflict] DEFAULT ((0)) FOR [IsMTHistoryConflict] +GO +ALTER TABLE [dbo].[EntityRelationshipTypes] ADD CONSTRAINT [DF_EntityRelationshipTypes_IsDirectRelationshipValidated] DEFAULT ((0)) FOR [IsDirectRelationshipValidated] +GO +ALTER TABLE [dbo].[EntityRelationshipTypes] ADD CONSTRAINT [DF_EntityRelationshipTypes_IsSharedRelationshipValidated] DEFAULT ((0)) FOR [IsSharedRelationshipValidated] +GO +ALTER TABLE [dbo].[ErrorLog] ADD DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[ExtensionServiceLocks] ADD CONSTRAINT [DF_LockTime_GETUTCDATE] DEFAULT (getutcdate()) FOR [LockTime] +GO +ALTER TABLE [dbo].[FileShareADGroupStatuses] ADD DEFAULT (getutcdate()) FOR [LastAccessTime] +GO +ALTER TABLE [dbo].[GlobalExceptions] ADD CONSTRAINT [DF_GlobalExceptions_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[GlobalExceptions] ADD CONSTRAINT [DF_GlobalExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[GroupEntityLog] ADD CONSTRAINT [DF_GroupEntityLog] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[InsidersReportFields] ADD CONSTRAINT [DF_InsidersReportFields_IsHeaderField] DEFAULT ((0)) FOR [IsHeaderField] +GO +ALTER TABLE [dbo].[InsidersReportFields] ADD DEFAULT (NULL) FOR [DateTimeFormat] +GO +ALTER TABLE [dbo].[InsidersReportFields] ADD CONSTRAINT [DF_InsidersReportFields_IsPermanentInsiders] DEFAULT ((0)) FOR [IsPermanentInsiders] +GO +ALTER TABLE [dbo].[Log] ADD CONSTRAINT [DF_Log_LogMessageCreated] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[MatterAccessHistory] ADD CONSTRAINT [DF_MatterAccessHistory_WasAddedBySelfMaintaining] DEFAULT ((0)) FOR [WasAddedBySelfMaintaining] +GO +ALTER TABLE [dbo].[MatterTeamExceptions] ADD CONSTRAINT [DF_MatterTeamExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[MatterTeamHistories] ADD CONSTRAINT [DF_MatterTeamHistories_ActivityDate] DEFAULT (getdate()) FOR [ActivityDate] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsAdmin] DEFAULT ((0)) FOR [IsAdmin] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsDelegate] DEFAULT ((0)) FOR [IsDelegate] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_WallRoleId] DEFAULT ((1)) FOR [WallRoleId] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsExceptedFromInactiveStatus] DEFAULT ((0)) FOR [IsExceptedFromInactiveStatus] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsRestrictedToGlobalAdmins] DEFAULT ((0)) FOR [IsRestrictedToGlobalAdmins] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_CanRemoveUsers] DEFAULT ((0)) FOR [CanRemoveUsers] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD DEFAULT ((0)) FOR [CanSubscribeUsers] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_ForceExpiration] DEFAULT ((0)) FOR [ForceNotification] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_IncludeAcknowledgments] DEFAULT ((0)) FOR [IncludeAcknowledgments] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_NotificationType] DEFAULT ('Event-Driven') FOR [NotificationType] +GO +ALTER TABLE [dbo].[Notifications] ADD DEFAULT ('Wall') FOR [Scope] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_NotificationName] DEFAULT ('') FOR [NotificationName] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_TriggerEvents] DEFAULT ((0)) FOR [TriggerEvents] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_IsDigest] DEFAULT ((0)) FOR [IsDigest] +GO +ALTER TABLE [dbo].[ObjectTemplate] ADD DEFAULT ((0)) FOR [SeparatorType] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_IsQueryable] DEFAULT ((1)) FOR [IsQueryable] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_IsSearchable] DEFAULT ((1)) FOR [IsSearchable] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_IsDefault] DEFAULT ((0)) FOR [IsDefault] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_OrderId] DEFAULT ((0)) FOR [OrderId] +GO +ALTER TABLE [dbo].[Reports] ADD CONSTRAINT [DF_Reports_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[Reports] ADD CONSTRAINT [DF_Reports_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[ReportSchedules] ADD CONSTRAINT [DF_ReportSchedules_RecipientAppUsers] DEFAULT ((0)) FOR [RecipientAppUsers] +GO +ALTER TABLE [dbo].[ReportSchedules] ADD CONSTRAINT [DF_ReportSchedules_SkipIfNoData] DEFAULT ((0)) FOR [SkipIfNoData] +GO +ALTER TABLE [dbo].[ReportSchedules] ADD CONSTRAINT [DF_ReportSchedules_IsEnabled] DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((1)) FOR [TrackerTypeId] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD CONSTRAINT [DF_TrackerExecutions_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [OnlyPrivate] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [OnlyDidNotAuthor] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [DistinctDocuments] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [IsCompleted] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [TrackActivityCategories] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((1)) FOR [ThresholdType] +GO +ALTER TABLE [dbo].[Trackers] ADD CONSTRAINT [DF_Thresholds_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[Trackers] ADD CONSTRAINT [DF_Thresholds_Modified] DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((0)) FOR [OnlyPrivate] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((0)) FOR [OnlyDidNotAuthor] +GO +ALTER TABLE [dbo].[Trackers] ADD CONSTRAINT [DF_Trackers_DistinctDocuments] DEFAULT ((1)) FOR [DistinctDocuments] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((0)) FOR [TrackActivityCategories] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((1)) FOR [ThresholdType] +GO +ALTER TABLE [dbo].[TrackerSides] ADD CONSTRAINT [DF_TrackerSides_TrackerSideName] DEFAULT ('Watch List') FOR [TrackerSideName] +GO +ALTER TABLE [dbo].[TrackerSides] ADD CONSTRAINT [DF_TrackerSides_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[TrackerTypes] ADD DEFAULT ((1)) FOR [TrackerCategoryId] +GO +ALTER TABLE [dbo].[TrackerTypes] ADD DEFAULT ((1)) FOR [IsVisible] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_SelfMaintaining] DEFAULT ('Off') FOR [SelfMaintaining] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_RequireAckForAccess] DEFAULT ('Off') FOR [RequireAckForAccess] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_OrderId] DEFAULT ((0)) FOR [OrderId] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_AutoAddMatterTeams] DEFAULT ('Off') FOR [AutoAddMatterTeams] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_RelationshipPairing] DEFAULT ('Off') FOR [RelationshipPairing] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessType_DefaultSelfMaintainingIntervalType] DEFAULT ('Fixed Lookback And Ongoing') FOR [DefaultSelfMaintainingIntervalType] +GO +ALTER TABLE [dbo].[WallCustomFieldConfig] ADD DEFAULT ('Custom Field') FOR [Description] +GO +ALTER TABLE [dbo].[WallExceptions] ADD CONSTRAINT [DF_WallExceptions_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[WallExceptions] ADD CONSTRAINT [DF_WallExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_WallAccessTypeId] DEFAULT ((1)) FOR [WallAccessTypeId] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_Modified] DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_IsEnabled] DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[Walls] ADD DEFAULT ((0)) FOR [IsSelfMaintaining] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DEF_Walls_RequireAcknowledgement] DEFAULT ((0)) FOR [IsRequireAcknowledgement] +GO +ALTER TABLE [dbo].[Walls] ADD DEFAULT ((0)) FOR [IsRelationshipPaired] +GO +ALTER TABLE [dbo].[WallSideEntities] ADD CONSTRAINT [DF_WallSideEntities_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[WallSideEntities] ADD CONSTRAINT [DF_WallSideEntities_WasAddedBySelfMaintaining] DEFAULT ((0)) FOR [WasAddedBySelfMaintaining] +GO +ALTER TABLE [dbo].[WallSides] ADD CONSTRAINT [DF_WallSides_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[WallSides] ADD CONSTRAINT [DF_WallSides_WallSideName] DEFAULT ('Side') FOR [WallSideName] +GO +ALTER TABLE [dbo].[Widget] ADD CONSTRAINT [DF_Widget_Editable] DEFAULT ((0)) FOR [Editable] +GO +ALTER TABLE [dbo].[Widget] ADD CONSTRAINT [DF_Widget_SupportRedirection] DEFAULT ((1)) FOR [SupportRedirection] +GO +ALTER TABLE [dbo].[WidgetInstance] ADD CONSTRAINT [DF_WidgetZoneWidgets_Expanded] DEFAULT ((1)) FOR [Expanded] +GO +ALTER TABLE [dbo].[WidgetInstance] ADD CONSTRAINT [DF_WidgetZoneWidgets_Maximized] DEFAULT ((1)) FOR [Maximized] +GO +ALTER TABLE [dbo].[WidgetInstance] ADD CONSTRAINT [DF_WidgetZoneWidgets_Resized] DEFAULT ((0)) FOR [Resized] +GO +ALTER TABLE [dbo].[AccessHistory] WITH CHECK ADD CONSTRAINT [FK_AccessHistory_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[AccessHistory] CHECK CONSTRAINT [FK_AccessHistory_Entities] +GO +ALTER TABLE [dbo].[AccessHistory] WITH CHECK ADD CONSTRAINT [FK_AccessHistory_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[AccessHistory] CHECK CONSTRAINT [FK_AccessHistory_Walls] +GO +ALTER TABLE [dbo].[AccessHistory] WITH CHECK ADD CONSTRAINT [FK_AccessHistory_WallSides] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[AccessHistory] CHECK CONSTRAINT [FK_AccessHistory_WallSides] +GO +ALTER TABLE [dbo].[Activities] WITH CHECK ADD CONSTRAINT [FK_Activities_ActivityCategories] FOREIGN KEY([ActivityCategoryId]) +REFERENCES [dbo].[ActivityCategories] ([ActivityCategoryId]) +GO +ALTER TABLE [dbo].[Activities] CHECK CONSTRAINT [FK_Activities_ActivityCategories] +GO +ALTER TABLE [dbo].[Activities] WITH CHECK ADD CONSTRAINT [FK_Activities_RepositoryTypes] FOREIGN KEY([RepositoryTypeId]) +REFERENCES [dbo].[RepositoryTypes] ([RepositoryTypeId]) +GO +ALTER TABLE [dbo].[Activities] CHECK CONSTRAINT [FK_Activities_RepositoryTypes] +GO +ALTER TABLE [dbo].[AlertDetails] WITH CHECK ADD CONSTRAINT [FK_AlertDetails_Alerts] FOREIGN KEY([AlertId]) +REFERENCES [dbo].[Alerts] ([AlertId]) +GO +ALTER TABLE [dbo].[AlertDetails] CHECK CONSTRAINT [FK_AlertDetails_Alerts] +GO +ALTER TABLE [dbo].[AlertDetailsCustomFields] WITH CHECK ADD CONSTRAINT [FK_AlertDetailsCustomFields_RepositoryTypes] FOREIGN KEY([RepositoryTypeId]) +REFERENCES [dbo].[RepositoryTypes] ([RepositoryTypeId]) +GO +ALTER TABLE [dbo].[AlertDetailsCustomFields] CHECK CONSTRAINT [FK_AlertDetailsCustomFields_RepositoryTypes] +GO +ALTER TABLE [dbo].[Alerts] WITH NOCHECK ADD CONSTRAINT [FK_Alerts_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[Alerts] CHECK CONSTRAINT [FK_Alerts_Entities] +GO +ALTER TABLE [dbo].[Alerts] WITH NOCHECK ADD CONSTRAINT [FK_Alerts_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[Alerts] CHECK CONSTRAINT [FK_Alerts_TrackerExecutions] +GO +ALTER TABLE [dbo].[ApplicationUsers] WITH CHECK ADD CONSTRAINT [FK_ApplicationUsers_ApplicationRolesAT] FOREIGN KEY([ATRoleId]) +REFERENCES [dbo].[ApplicationRolesAT] ([RoleId]) +GO +ALTER TABLE [dbo].[ApplicationUsers] CHECK CONSTRAINT [FK_ApplicationUsers_ApplicationRolesAT] +GO +ALTER TABLE [dbo].[ApplicationUsers] WITH CHECK ADD CONSTRAINT [FK_ApplicationUsers_ApplicationRolesMTM] FOREIGN KEY([MTMRoleId]) +REFERENCES [dbo].[ApplicationRolesMTM] ([RoleId]) +GO +ALTER TABLE [dbo].[ApplicationUsers] CHECK CONSTRAINT [FK_ApplicationUsers_ApplicationRolesMTM] +GO +ALTER TABLE [dbo].[ApplicationUsers] WITH CHECK ADD CONSTRAINT [FK_ApplicationUsers_ApplicationRolesWB] FOREIGN KEY([WBRoleId]) +REFERENCES [dbo].[ApplicationRolesWB] ([RoleId]) +GO +ALTER TABLE [dbo].[ApplicationUsers] CHECK CONSTRAINT [FK_ApplicationUsers_ApplicationRolesWB] +GO +ALTER TABLE [dbo].[Attachments] WITH CHECK ADD CONSTRAINT [FK_Attachments_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Attachments] CHECK CONSTRAINT [FK_Attachments_ApplicationUsers] +GO +ALTER TABLE [dbo].[Attachments] WITH CHECK ADD CONSTRAINT [FK_Attachments_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[Attachments] CHECK CONSTRAINT [FK_Attachments_Walls] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] WITH CHECK ADD CONSTRAINT [FK_AttorneyAcknowledgments_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] CHECK CONSTRAINT [FK_AttorneyAcknowledgments_Entities] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] WITH CHECK ADD CONSTRAINT [FK_AttorneyAcknowledgments_WallSides] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] CHECK CONSTRAINT [FK_AttorneyAcknowledgments_WallSides] +GO +ALTER TABLE [dbo].[DefaultNotifications] WITH CHECK ADD CONSTRAINT [FK_DefaultNotifications_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[DefaultNotifications] CHECK CONSTRAINT [FK_DefaultNotifications_Notifications] +GO +ALTER TABLE [dbo].[DefaultNotifications] WITH CHECK ADD CONSTRAINT [FK_DefaultNotifications_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[DefaultNotifications] CHECK CONSTRAINT [FK_DefaultNotifications_WallAccessTypes] +GO +ALTER TABLE [dbo].[DefaultTrackers] WITH CHECK ADD CONSTRAINT [FK_DefaultTrackers_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[DefaultTrackers] CHECK CONSTRAINT [FK_DefaultTrackers_Trackers] +GO +ALTER TABLE [dbo].[DefaultTrackers] WITH CHECK ADD CONSTRAINT [FK_DefaultTrackers_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[DefaultTrackers] CHECK CONSTRAINT [FK_DefaultTrackers_WallAccessTypes] +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_DigestNotificationAttachments_Attachments] FOREIGN KEY([NotificationAttachmentId]) +REFERENCES [dbo].[Attachments] ([AttachmentId]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] CHECK CONSTRAINT [FK_DigestNotificationAttachments_Attachments] +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_DigestNotificationAttachments_DigestNotifications] FOREIGN KEY([DigestNotificationId]) +REFERENCES [dbo].[DigestNotifications] ([DigestNotificationId]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] CHECK CONSTRAINT [FK_DigestNotificationAttachments_DigestNotifications] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [FK_DigestNotifications_DigestNotificationContent] FOREIGN KEY([DigestNotificationContentId]) +REFERENCES [dbo].[DigestNotificationContent] ([DigestNotificationContentId]) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [FK_DigestNotifications_DigestNotificationContent] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [FK_DigestNotifications_NotificationHistory] FOREIGN KEY([NotificationHistoryId]) +REFERENCES [dbo].[NotificationHistory] ([NotificationHistoryId]) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [FK_DigestNotifications_NotificationHistory] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [FK_DigestNotifications_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [FK_DigestNotifications_Notifications] +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupDefinitions_ApplicationUsers] FOREIGN KEY([CreatedBy]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] CHECK CONSTRAINT [FK_DynamicEntityGroupDefinitions_ApplicationUsers] +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] WITH NOCHECK ADD CONSTRAINT [FK_DynamicEntityGroupDefinitions_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] CHECK CONSTRAINT [FK_DynamicEntityGroupDefinitions_Entities] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupExceptions_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] CHECK CONSTRAINT [FK_DynamicEntityGroupExceptions_ApplicationUsers] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupExceptions_DegEntities] FOREIGN KEY([DynamicGroupEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] CHECK CONSTRAINT [FK_DynamicEntityGroupExceptions_DegEntities] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupExceptions_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] CHECK CONSTRAINT [FK_DynamicEntityGroupExceptions_Entities] +GO +ALTER TABLE [dbo].[Entities] WITH CHECK ADD CONSTRAINT [FK_Entities_Entities] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[Entities] CHECK CONSTRAINT [FK_Entities_Entities] +GO +ALTER TABLE [dbo].[Entities] WITH CHECK ADD CONSTRAINT [FK_Entities_EntityTypes_1] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[Entities] CHECK CONSTRAINT [FK_Entities_EntityTypes_1] +GO +ALTER TABLE [dbo].[Entities] WITH CHECK ADD CONSTRAINT [FK_Entities_EntityTypes_2] FOREIGN KEY([ParentTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[Entities] CHECK CONSTRAINT [FK_Entities_EntityTypes_2] +GO +ALTER TABLE [dbo].[EntitiesMatterTeamFields] WITH CHECK ADD CONSTRAINT [FK_EntitiesMatterTeamFields_Entities] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntitiesMatterTeamFields] CHECK CONSTRAINT [FK_EntitiesMatterTeamFields_Entities] +GO +ALTER TABLE [dbo].[EntitiesUserFields] WITH CHECK ADD CONSTRAINT [FK_EntitiesUserFields_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntitiesUserFields] CHECK CONSTRAINT [FK_EntitiesUserFields_Entities] +GO +ALTER TABLE [dbo].[EntityCustomComboValues] WITH NOCHECK ADD CONSTRAINT [FK_EntityCustomComboValues_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[EntityCustomComboValues] CHECK CONSTRAINT [FK_EntityCustomComboValues_EntityTypes] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] WITH NOCHECK ADD CONSTRAINT [FK_EntityCustomFieldConfig_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] CHECK CONSTRAINT [FK_EntityCustomFieldConfig_EntityTypes] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_Entities_1] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_Entities_1] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_Entities_2] FOREIGN KEY([ParentEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_Entities_2] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_MatterTeamRole1] FOREIGN KEY([RoleId]) +REFERENCES [dbo].[MatterTeamRole] ([RoleId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_MatterTeamRole1] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_MatterTeamRole2] FOREIGN KEY([DemotionRoleId]) +REFERENCES [dbo].[MatterTeamRole] ([RoleId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_MatterTeamRole2] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [FK_EntityToEntityRelationships_Entities1] FOREIGN KEY([PrimaryEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [FK_EntityToEntityRelationships_Entities1] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [FK_EntityToEntityRelationships_Entities2] FOREIGN KEY([SubordinateEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [FK_EntityToEntityRelationships_Entities2] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [FK_EntityToEntityRelationships_EntityRelationshipTypes] FOREIGN KEY([EntityRelationshipTypeId]) +REFERENCES [dbo].[EntityRelationshipTypes] ([EntityRelationshipTypeId]) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [FK_EntityToEntityRelationships_EntityRelationshipTypes] +GO +ALTER TABLE [dbo].[ExternalUserFields] WITH CHECK ADD CONSTRAINT [FK_ExternalUserFields_ApplicationUsers] FOREIGN KEY([CreatedBy]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[ExternalUserFields] CHECK CONSTRAINT [FK_ExternalUserFields_ApplicationUsers] +GO +ALTER TABLE [dbo].[ExternalUserFields] WITH CHECK ADD CONSTRAINT [FK_ExternalUserFields_Entities] FOREIGN KEY([ExternalUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[ExternalUserFields] CHECK CONSTRAINT [FK_ExternalUserFields_Entities] +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] WITH CHECK ADD CONSTRAINT [FK_ExternalUsersAccessHistory_MatterEntities] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] CHECK CONSTRAINT [FK_ExternalUsersAccessHistory_MatterEntities] +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] WITH CHECK ADD CONSTRAINT [FK_ExternalUsersAccessHistory_UserEntities] FOREIGN KEY([ExternalUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] CHECK CONSTRAINT [FK_ExternalUsersAccessHistory_UserEntities] +GO +ALTER TABLE [dbo].[GlobalExceptions] WITH NOCHECK ADD CONSTRAINT [FK_GlobalExceptions_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[GlobalExceptions] CHECK CONSTRAINT [FK_GlobalExceptions_ApplicationUsers] +GO +ALTER TABLE [dbo].[GroupEntityLog] WITH CHECK ADD CONSTRAINT [FK_GroupEntityLog_Entities] FOREIGN KEY([GroupEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[GroupEntityLog] CHECK CONSTRAINT [FK_GroupEntityLog_Entities] +GO +ALTER TABLE [dbo].[HiddenMatterTeams] WITH CHECK ADD CONSTRAINT [FK_HiddenMatterTeams_Entities] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[HiddenMatterTeams] CHECK CONSTRAINT [FK_HiddenMatterTeams_Entities] +GO +ALTER TABLE [dbo].[InsidersReportFields] WITH CHECK ADD CONSTRAINT [FK_InsidersReportFields_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[InsidersReportFields] CHECK CONSTRAINT [FK_InsidersReportFields_EntityTypes] +GO +ALTER TABLE [dbo].[InsidersReportLogs] WITH CHECK ADD CONSTRAINT [FK_InsidersReportLogs_ApplicationUsers] FOREIGN KEY([ApplicationUserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[InsidersReportLogs] CHECK CONSTRAINT [FK_InsidersReportLogs_ApplicationUsers] +GO +ALTER TABLE [dbo].[InsidersReportLogs] WITH CHECK ADD CONSTRAINT [FK_InsidersReportLogs_Matters] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[InsidersReportLogs] CHECK CONSTRAINT [FK_InsidersReportLogs_Matters] +GO +ALTER TABLE [dbo].[InsidersReports] WITH CHECK ADD CONSTRAINT [FK_InsidersReports_Entities] FOREIGN KEY([MatterEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[InsidersReports] CHECK CONSTRAINT [FK_InsidersReports_Entities] +GO +ALTER TABLE [dbo].[Log] WITH CHECK ADD CONSTRAINT [FK_Log_ApplicationUsers] FOREIGN KEY([UserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Log] CHECK CONSTRAINT [FK_Log_ApplicationUsers] +GO +ALTER TABLE [dbo].[MatterAccessHistory] WITH CHECK ADD CONSTRAINT [FK_MatterAccessHistory_AccessHistory] FOREIGN KEY([AccessHistoryId]) +REFERENCES [dbo].[AccessHistory] ([AccessHistoryId]) +GO +ALTER TABLE [dbo].[MatterAccessHistory] CHECK CONSTRAINT [FK_MatterAccessHistory_AccessHistory] +GO +ALTER TABLE [dbo].[MatterAccessHistory] WITH CHECK ADD CONSTRAINT [FK_MatterAccessHistory_Entities] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterAccessHistory] CHECK CONSTRAINT [FK_MatterAccessHistory_Entities] +GO +ALTER TABLE [dbo].[MatterTeamExceptions] WITH CHECK ADD CONSTRAINT [FK_MatterTeamExceptions_Entities1] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamExceptions] CHECK CONSTRAINT [FK_MatterTeamExceptions_Entities1] +GO +ALTER TABLE [dbo].[MatterTeamExceptions] WITH CHECK ADD CONSTRAINT [FK_MatterTeamExceptions_Entities2] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamExceptions] CHECK CONSTRAINT [FK_MatterTeamExceptions_Entities2] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_MatterEntities] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_MatterEntities] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_MatterTeamHistoryActivityTypes] FOREIGN KEY([ActivityTypeId]) +REFERENCES [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_MatterTeamHistoryActivityTypes] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_MatterTeamRoles] FOREIGN KEY([RoleId]) +REFERENCES [dbo].[MatterTeamRole] ([RoleId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_MatterTeamRoles] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_UserEntities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_UserEntities] +GO +ALTER TABLE [dbo].[MatterTeamRole] WITH CHECK ADD CONSTRAINT [FK_MatterTeamRole_WallRoleId] FOREIGN KEY([WallRoleId]) +REFERENCES [dbo].[WallRoles] ([WallRoleId]) +GO +ALTER TABLE [dbo].[MatterTeamRole] CHECK CONSTRAINT [FK_MatterTeamRole_WallRoleId] +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] WITH CHECK ADD CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities1] FOREIGN KEY([MatterTeamId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] CHECK CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities1] +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] WITH CHECK ADD CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities2] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] CHECK CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities2] +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] WITH CHECK ADD CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities3] FOREIGN KEY([AdminEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] CHECK CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities3] +GO +ALTER TABLE [dbo].[NotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_NotificationAttachments_Attachments] FOREIGN KEY([AttachmentId]) +REFERENCES [dbo].[Attachments] ([AttachmentId]) +GO +ALTER TABLE [dbo].[NotificationAttachments] CHECK CONSTRAINT [FK_NotificationAttachments_Attachments] +GO +ALTER TABLE [dbo].[NotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_NotificationAttachments_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[NotificationAttachments] CHECK CONSTRAINT [FK_NotificationAttachments_Notifications] +GO +ALTER TABLE [dbo].[NotificationHistory] WITH CHECK ADD CONSTRAINT [FK_NotificationHistory_AttorneyAcknowledgments] FOREIGN KEY([AcknowledgmentId]) +REFERENCES [dbo].[AttorneyAcknowledgments] ([AcknowledgmentId]) +GO +ALTER TABLE [dbo].[NotificationHistory] CHECK CONSTRAINT [FK_NotificationHistory_AttorneyAcknowledgments] +GO +ALTER TABLE [dbo].[NotificationHistory] WITH CHECK ADD CONSTRAINT [FK_NotificationHistory_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[NotificationHistory] CHECK CONSTRAINT [FK_NotificationHistory_Entities] +GO +ALTER TABLE [dbo].[NotificationHistory] WITH CHECK ADD CONSTRAINT [FK_NotificationHistorys_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[NotificationHistory] CHECK CONSTRAINT [FK_NotificationHistorys_Notifications] +GO +ALTER TABLE [dbo].[NotificationRoles] WITH CHECK ADD CONSTRAINT [FK_NotificationRoles_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[NotificationRoles] CHECK CONSTRAINT [FK_NotificationRoles_WallAccessTypes] +GO +ALTER TABLE [dbo].[ObjectReleaseExceptions] WITH CHECK ADD CONSTRAINT [FK_ObjectReleaseExceptions_EntityId] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ObjectReleaseExceptions] CHECK CONSTRAINT [FK_ObjectReleaseExceptions_EntityId] +GO +ALTER TABLE [dbo].[ObjectTemplate] WITH CHECK ADD CONSTRAINT [FK_ObjectTemplate_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[ObjectTemplate] CHECK CONSTRAINT [FK_ObjectTemplate_ApplicationUsers] +GO +ALTER TABLE [dbo].[ObjectTemplate] WITH CHECK ADD CONSTRAINT [FK_ObjectTemplate_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[ObjectTemplate] CHECK CONSTRAINT [FK_ObjectTemplate_EntityTypes] +GO +ALTER TABLE [dbo].[PermanentInsidersAccessHistory] WITH CHECK ADD CONSTRAINT [FK_PermanentInsidersAccessHistory_UserEntities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[PermanentInsidersAccessHistory] CHECK CONSTRAINT [FK_PermanentInsidersAccessHistory_UserEntities] +GO +ALTER TABLE [dbo].[PolicyCategories] WITH CHECK ADD CONSTRAINT [FK_PolicyCategories_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[PolicyCategories] CHECK CONSTRAINT [FK_PolicyCategories_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_UserEntityId] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_UserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_AllowingWallId] FOREIGN KEY([AllowingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_AllowingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_UserEntityId] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_UserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_ConflictingWallId] FOREIGN KEY([ConflictingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_ConflictingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_AllowedUserEntityId] FOREIGN KEY([AllowedUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_AllowedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_DeniedUserEntityId] FOREIGN KEY([DeniedUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_DeniedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_AllowingWallId] FOREIGN KEY([AllowingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_AllowingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_AllowedUserEntityId] FOREIGN KEY([ConflictingUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_AllowedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_DeniedUserEntityId] FOREIGN KEY([DeniedUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_DeniedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_AllowingWallId] FOREIGN KEY([ConflictingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_AllowingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportFields] WITH CHECK ADD CONSTRAINT [FK_ReportFields_ReportTypes] FOREIGN KEY([ReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[ReportFields] CHECK CONSTRAINT [FK_ReportFields_ReportTypes] +GO +ALTER TABLE [dbo].[Reports] WITH CHECK ADD CONSTRAINT [FK_Reports_ApplicationUsers] FOREIGN KEY([UserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Reports] CHECK CONSTRAINT [FK_Reports_ApplicationUsers] +GO +ALTER TABLE [dbo].[Reports] WITH CHECK ADD CONSTRAINT [FK_Reports_ReportTypes] FOREIGN KEY([ReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[Reports] CHECK CONSTRAINT [FK_Reports_ReportTypes] +GO +ALTER TABLE [dbo].[ReportSchedules] WITH CHECK ADD CONSTRAINT [FK_ReportFields_Reports] FOREIGN KEY([ReportID]) +REFERENCES [dbo].[Reports] ([ReportId]) +GO +ALTER TABLE [dbo].[ReportSchedules] CHECK CONSTRAINT [FK_ReportFields_Reports] +GO +ALTER TABLE [dbo].[ReportsConflictingLatestUpdateDate] WITH CHECK ADD CONSTRAINT [FK_ReportsConflictingLatestUpdateDate_ReportTypes_ReportTypeId] FOREIGN KEY([ReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[ReportsConflictingLatestUpdateDate] CHECK CONSTRAINT [FK_ReportsConflictingLatestUpdateDate_ReportTypes_ReportTypeId] +GO +ALTER TABLE [dbo].[ReportTypes] WITH CHECK ADD CONSTRAINT [FK_ParentReportTypes_ReportTypes] FOREIGN KEY([ParentReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[ReportTypes] CHECK CONSTRAINT [FK_ParentReportTypes_ReportTypes] +GO +ALTER TABLE [dbo].[ReportTypes] WITH CHECK ADD CONSTRAINT [FK_ReportTypes_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[ReportTypes] CHECK CONSTRAINT [FK_ReportTypes_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[Repositories] WITH CHECK ADD CONSTRAINT [FK_Repositories_RepositoryTypes] FOREIGN KEY([RepositoryTypeId]) +REFERENCES [dbo].[RepositoryTypes] ([RepositoryTypeId]) +GO +ALTER TABLE [dbo].[Repositories] CHECK CONSTRAINT [FK_Repositories_RepositoryTypes] +GO +ALTER TABLE [dbo].[SCHEDULER_CRON_TRIGGERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_CRON_TRIGGERS_SCHEDULER_TRIGGERS] FOREIGN KEY([TRIGGER_NAME], [TRIGGER_GROUP]) +REFERENCES [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_CRON_TRIGGERS] CHECK CONSTRAINT [FK_SCHEDULER_CRON_TRIGGERS_SCHEDULER_TRIGGERS] +GO +ALTER TABLE [dbo].[SCHEDULER_JOB_LISTENERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_JOB_LISTENERS_SCHEDULER_JOB_DETAILS] FOREIGN KEY([JOB_NAME], [JOB_GROUP]) +REFERENCES [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_JOB_LISTENERS] CHECK CONSTRAINT [FK_SCHEDULER_JOB_LISTENERS_SCHEDULER_JOB_DETAILS] +GO +ALTER TABLE [dbo].[SCHEDULER_SIMPLE_TRIGGERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_SIMPLE_TRIGGERS_SCHEDULER_TRIGGERS] FOREIGN KEY([TRIGGER_NAME], [TRIGGER_GROUP]) +REFERENCES [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_SIMPLE_TRIGGERS] CHECK CONSTRAINT [FK_SCHEDULER_SIMPLE_TRIGGERS_SCHEDULER_TRIGGERS] +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGER_LISTENERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_TRIGGER_LISTENERS_SCHEDULER_TRIGGERS] FOREIGN KEY([TRIGGER_NAME], [TRIGGER_GROUP]) +REFERENCES [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGER_LISTENERS] CHECK CONSTRAINT [FK_SCHEDULER_TRIGGER_LISTENERS_SCHEDULER_TRIGGERS] +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_TRIGGERS_SCHEDULER_JOB_DETAILS] FOREIGN KEY([JOB_NAME], [JOB_GROUP]) +REFERENCES [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP]) +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGERS] CHECK CONSTRAINT [FK_SCHEDULER_TRIGGERS_SCHEDULER_JOB_DETAILS] +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] WITH CHECK ADD CONSTRAINT [FK_ScreeningLawyerKeyMap_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] CHECK CONSTRAINT [FK_ScreeningLawyerKeyMap_Entities] +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] WITH CHECK ADD CONSTRAINT [FK_ScreeningLawyerKeyMap_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] CHECK CONSTRAINT [FK_ScreeningLawyerKeyMap_Walls] +GO +ALTER TABLE [dbo].[SummaryDetails] WITH NOCHECK ADD CONSTRAINT [FK_SummaryDetails_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[SummaryDetails] CHECK CONSTRAINT [FK_SummaryDetails_Entities] +GO +ALTER TABLE [dbo].[SummaryDetails] WITH NOCHECK ADD CONSTRAINT [FK_SummaryDetails_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[SummaryDetails] CHECK CONSTRAINT [FK_SummaryDetails_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerActivities_Activities] FOREIGN KEY([ActivityId]) +REFERENCES [dbo].[Activities] ([ActivityId]) +GO +ALTER TABLE [dbo].[TrackerActivities] CHECK CONSTRAINT [FK_TrackerActivities_Activities] +GO +ALTER TABLE [dbo].[TrackerActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerActivities_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerActivities] CHECK CONSTRAINT [FK_TrackerActivities_Trackers] +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerClientsAndMatters_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] CHECK CONSTRAINT [FK_TrackerClientsAndMatters_Entities] +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerClientsAndMatters_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] CHECK CONSTRAINT [FK_TrackerClientsAndMatters_Trackers] +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerClientsAndMatters_TrackerSides] FOREIGN KEY([TrackerSideId]) +REFERENCES [dbo].[TrackerSides] ([TrackerSideId]) +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] CHECK CONSTRAINT [FK_TrackerClientsAndMatters_TrackerSides] +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionActivities_Activities] FOREIGN KEY([ActivityId]) +REFERENCES [dbo].[Activities] ([ActivityId]) +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] CHECK CONSTRAINT [FK_TrackerExecutionActivities_Activities] +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionActivities_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] CHECK CONSTRAINT [FK_TrackerExecutionActivities_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionClientsAndMatters_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] CHECK CONSTRAINT [FK_TrackerExecutionClientsAndMatters_Entities] +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionClientsAndMatters_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] CHECK CONSTRAINT [FK_TrackerExecutionClientsAndMatters_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionLibraries_Libraries] FOREIGN KEY([LibraryId]) +REFERENCES [dbo].[Repositories] ([RepositoryId]) +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] CHECK CONSTRAINT [FK_TrackerExecutionLibraries_Libraries] +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionLibraries_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] CHECK CONSTRAINT [FK_TrackerExecutionLibraries_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_Trackers] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_TrackerSides] FOREIGN KEY([TrackerSideId]) +REFERENCES [dbo].[TrackerSides] ([TrackerSideId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_TrackerSides] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_TrackerTypes] FOREIGN KEY([TrackerTypeId]) +REFERENCES [dbo].[TrackerTypes] ([TrackerTypeId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_TrackerTypes] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_Walls] FOREIGN KEY([LinkedPolicyId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_Walls] +GO +ALTER TABLE [dbo].[TrackerRepositories] WITH CHECK ADD CONSTRAINT [FK_ThresholdRepositories_Repositories] FOREIGN KEY([RepositoryId]) +REFERENCES [dbo].[Repositories] ([RepositoryId]) +GO +ALTER TABLE [dbo].[TrackerRepositories] CHECK CONSTRAINT [FK_ThresholdRepositories_Repositories] +GO +ALTER TABLE [dbo].[TrackerRepositories] WITH CHECK ADD CONSTRAINT [FK_TrackerRepositories_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerRepositories] CHECK CONSTRAINT [FK_TrackerRepositories_Trackers] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_ApplicationUsers] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_ApplicationUsers_Modifier] FOREIGN KEY([ModifierId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_ApplicationUsers_Modifier] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_TrackerTypes] FOREIGN KEY([TrackerTypeId]) +REFERENCES [dbo].[TrackerTypes] ([TrackerTypeId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_TrackerTypes] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_Walls] FOREIGN KEY([LinkedPolicyId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_Walls] +GO +ALTER TABLE [dbo].[TrackerSides] WITH CHECK ADD CONSTRAINT [FK_TrackerSides_Tracker] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerSides] CHECK CONSTRAINT [FK_TrackerSides_Tracker] +GO +ALTER TABLE [dbo].[TrackerSides] WITH CHECK ADD CONSTRAINT [FK_TrackerSides_WallSide] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[TrackerSides] CHECK CONSTRAINT [FK_TrackerSides_WallSide] +GO +ALTER TABLE [dbo].[TrackerTypes] WITH CHECK ADD CONSTRAINT [FK_TrackerTypes_TrackerCategories] FOREIGN KEY([TrackerCategoryId]) +REFERENCES [dbo].[TrackerCategories] ([TrackerCategoryId]) +GO +ALTER TABLE [dbo].[TrackerTypes] CHECK CONSTRAINT [FK_TrackerTypes_TrackerCategories] +GO +ALTER TABLE [dbo].[TrackerWatchList] WITH CHECK ADD CONSTRAINT [FK_ThresholdWatchList_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[TrackerWatchList] CHECK CONSTRAINT [FK_ThresholdWatchList_Entities] +GO +ALTER TABLE [dbo].[TrackerWatchList] WITH CHECK ADD CONSTRAINT [FK_TrackerWatchList_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerWatchList] CHECK CONSTRAINT [FK_TrackerWatchList_Trackers] +GO +ALTER TABLE [dbo].[TrackerWatchList] WITH CHECK ADD CONSTRAINT [FK_TrackerWatchList_TrackerSides] FOREIGN KEY([TrackerSideId]) +REFERENCES [dbo].[TrackerSides] ([TrackerSideId]) +GO +ALTER TABLE [dbo].[TrackerWatchList] CHECK CONSTRAINT [FK_TrackerWatchList_TrackerSides] +GO +ALTER TABLE [dbo].[UserActivityCounts] WITH CHECK ADD CONSTRAINT [FK_UserActivityCounts_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[UserActivityCounts] CHECK CONSTRAINT [FK_UserActivityCounts_Entities] +GO +ALTER TABLE [dbo].[UserActivityCounts] WITH CHECK ADD CONSTRAINT [FK_UserActivityCounts_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[UserActivityCounts] CHECK CONSTRAINT [FK_UserActivityCounts_TrackerExecutions] +GO +ALTER TABLE [dbo].[WallAccessTypes] WITH CHECK ADD CONSTRAINT [FK_WallAccessTypes_PolicyCategories] FOREIGN KEY([PolicyCategoryId]) +REFERENCES [dbo].[PolicyCategories] ([PolicyCategoryId]) +GO +ALTER TABLE [dbo].[WallAccessTypes] CHECK CONSTRAINT [FK_WallAccessTypes_PolicyCategories] +GO +ALTER TABLE [dbo].[WallCustomComboValues] WITH CHECK ADD CONSTRAINT [FK_WallCustomComboValues_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[WallCustomComboValues] CHECK CONSTRAINT [FK_WallCustomComboValues_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[WallCustomFieldConfig] WITH CHECK ADD CONSTRAINT [FK_WallCustomFieldConfig_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[WallCustomFieldConfig] CHECK CONSTRAINT [FK_WallCustomFieldConfig_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[WallExceptions] WITH NOCHECK ADD CONSTRAINT [FK_WallExceptions_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[WallExceptions] CHECK CONSTRAINT [FK_WallExceptions_ApplicationUsers] +GO +ALTER TABLE [dbo].[WallExceptions] WITH CHECK ADD CONSTRAINT [FK_WallExceptions_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[WallExceptions] CHECK CONSTRAINT [FK_WallExceptions_Entities] +GO +ALTER TABLE [dbo].[WallExceptions] WITH CHECK ADD CONSTRAINT [FK_WallExceptions_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[WallExceptions] CHECK CONSTRAINT [FK_WallExceptions_Walls] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [FK_Walls_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [FK_Walls_ApplicationUsers] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [FK_Walls_ApplicationUsers2] FOREIGN KEY([ModifierId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [FK_Walls_ApplicationUsers2] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [FK_Walls_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [FK_Walls_WallAccessTypes] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_Entities] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_WallRoleId] FOREIGN KEY([WallRoleId]) +REFERENCES [dbo].[WallRoles] ([WallRoleId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_WallRoleId] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_Walls] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_WallSides] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_WallSides] +GO +ALTER TABLE [dbo].[WallSides] WITH CHECK ADD CONSTRAINT [FK_WallSides_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[WallSides] CHECK CONSTRAINT [FK_WallSides_Walls] +GO +ALTER TABLE [dbo].[WidgetInstance] WITH CHECK ADD CONSTRAINT [FK_WidgetZoneWidgets_Widget] FOREIGN KEY([WidgetId]) +REFERENCES [dbo].[Widget] ([Id]) +GO +ALTER TABLE [dbo].[WidgetInstance] CHECK CONSTRAINT [FK_WidgetZoneWidgets_Widget] +GO +ALTER TABLE [dbo].[WidgetInstance] WITH CHECK ADD CONSTRAINT [FK_WidgetZoneWidgets_WidgetZone] FOREIGN KEY([WidgetZoneId]) +REFERENCES [dbo].[WidgetZone] ([Id]) +GO +ALTER TABLE [dbo].[WidgetInstance] CHECK CONSTRAINT [FK_WidgetZoneWidgets_WidgetZone] +GO +ALTER TABLE [dbo].[WidgetZone] WITH CHECK ADD CONSTRAINT [FK_WidgetZone_ApplicationUsers] FOREIGN KEY([UserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[WidgetZone] CHECK CONSTRAINT [FK_WidgetZone_ApplicationUsers] +GO +ALTER TABLE [dbo].[WidgetZone] WITH CHECK ADD CONSTRAINT [FK_WidgetZone_WidgetZoneType] FOREIGN KEY([WidgetZoneTypeId]) +REFERENCES [dbo].[WidgetZoneType] ([Id]) +GO +ALTER TABLE [dbo].[WidgetZone] CHECK CONSTRAINT [FK_WidgetZone_WidgetZoneType] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [CK_DigestNotifications] CHECK (([EmailAddress] IS NOT NULL OR [NotificationHistoryId] IS NOT NULL)) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [CK_DigestNotifications] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [CK_EntityToEntityRelationships] CHECK (([PrimaryEntityId]<>[SubordinateEntityId])) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [CK_EntityToEntityRelationships] +GO +ALTER TABLE [dbo].[MatterTeamRole] WITH NOCHECK ADD CONSTRAINT [CK_MatterTeamRole_CanRemoveUsers] CHECK (([CanRemoveUsers]=(0) OR [CanRemoveUsers]=(1) AND [IsAdmin]=(1))) +GO +ALTER TABLE [dbo].[MatterTeamRole] CHECK CONSTRAINT [CK_MatterTeamRole_CanRemoveUsers] +GO +ALTER TABLE [dbo].[MatterTeamRole] WITH NOCHECK ADD CONSTRAINT [CK_MatterTeamRole_IsDelegate] CHECK (([IsDelegate]=(0) OR [IsDelegate]=(1) AND [IsAdmin]=(1))) +GO +ALTER TABLE [dbo].[MatterTeamRole] CHECK CONSTRAINT [CK_MatterTeamRole_IsDelegate] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [CK_Walls_FoundationalGroupId] CHECK ((isnumeric([FoundationalGroupId])<>(1) OR CONVERT([int],[FoundationalGroupId])=[WallId])) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [CK_Walls_FoundationalGroupId] +GO +/****** Object: StoredProcedure [dbo].[usp_makeunicodecolumn] Script Date: 2/6/2018 1:34:19 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + +-- Register procedure +CREATE PROCEDURE [dbo].[usp_makeunicodecolumn] + @TABLE_NAME VARCHAR(50) = 0, -- name of table + @columnname VARCHAR(50) = 0, -- name of column + @indexname VARCHAR (50) = 0, -- name of index + @prevtype VARCHAR (50) = 'varchar', -- previous type name + @newtype VARCHAR (50) = 'nvarchar' -- new type name +AS +-- Check if this column doesn't need changes +IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=@TABLE_NAME AND COLUMN_NAME=@columnname AND DATA_TYPE = @prevtype) +BEGIN + DECLARE @IsNullable VARCHAR(10) + DECLARE @precision VARCHAR(10) + SET @IsNullable = '1' + + -- Get if this columns may NULL value, and length of column in chars + SELECT @IsNullable = IS_NULLABLE, @precision = CHARACTER_MAXIMUM_LENGTH FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=@TABLE_NAME AND COLUMN_NAME=@columnname AND DATA_TYPE = @prevtype + + DECLARE @tsql VARCHAR (200) + DECLARE @indexIsDroped BIT + SET @indexIsDroped = 0 + + -- DROP existing index + IF (LEN(@indexname) > 1) AND (EXISTS (SELECT INDEXPROPERTY(OBJECT_ID(@TABLE_NAME), @indexname, 'IndexID'))) + BEGIN + SET @tsql = 'DROP INDEX ' + @TABLE_NAME + '.' + @indexname + EXEC (@tsql) + SET @indexIsDroped = 1 + END + -- Change column with new datatype + SET @tsql = 'ALTER TABLE [' + @TABLE_NAME + '] ALTER COLUMN [' + @columnname + '] ' + @newtype + IF (@precision IS NOT NULL) + BEGIN + -- Truncate length of column + IF (@precision > 4000) + BEGIN + SET @precision = 4000 + DECLARE @tsql_truncate VARCHAR(255) + SET @tsql_truncate = 'UPDATE [' + @TABLE_NAME + '] SET ' + @columnname + ' = LEFT(' + @columnname + ', 4000) WHERE LEN(' + @columnname + ') > 4000' + EXEC (@tsql_truncate) + END + SET @tsql = @tsql + '(' + @precision + ')' + END + IF (@IsNullable = '0' OR @IsNullable = 'NO') + SET @tsql = @tsql + ' NOT NULL' + ELSE SET @tsql = @tsql + ' NULL' + EXEC (@tsql) + + -- Create index if it was deleted + IF (@indexIsDroped > 0) + BEGIN + SET @tsql = 'CREATE INDEX ' + @indexname + ' ON ' + @TABLE_NAME + '(' + @columnname + ') ' + EXEC (@tsql) + END +END +GO +USE [master] +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET READ_WRITE +GO diff --git a/modules/sqlserver_install/templates/script_walls_preparation.sql.erb b/modules/sqlserver_install/templates/script_walls_preparation.sql.erb new file mode 100644 index 0000000..42f5d32 --- /dev/null +++ b/modules/sqlserver_install/templates/script_walls_preparation.sql.erb @@ -0,0 +1,3898 @@ +USE [master] +GO +/****** Object: Database [<%=@sqlserverdbname%>] Script Date: 2/6/2018 1:34:16 PM ******/ +--CREATE DATABASE [<%=@sqlserverdbname%>] +-- CONTAINMENT = NONE +-- ON PRIMARY +--( NAME = N'WALLSstgSit', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\<%=@sqlserverdbname%>.mdf' , SIZE = 6336KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB ) +-- LOG ON +--( NAME = N'WALLSstgSit_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\<%=@sqlserverdbname%>_log.ldf' , SIZE = 3520KB , MAXSIZE = 2048GB , FILEGROWTH = 10%) +--GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET COMPATIBILITY_LEVEL = 100 +GO +IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')) +begin +EXEC [<%=@sqlserverdbname%>].[dbo].[sp_fulltext_database] @action = 'enable' +end +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_NULL_DEFAULT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_NULLS OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_PADDING OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_WARNINGS OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ARITHABORT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_CLOSE OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_SHRINK OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_UPDATE_STATISTICS ON +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET CURSOR_CLOSE_ON_COMMIT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET CURSOR_DEFAULT GLOBAL +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET CONCAT_NULL_YIELDS_NULL OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET NUMERIC_ROUNDABORT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET QUOTED_IDENTIFIER OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET RECURSIVE_TRIGGERS OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ENABLE_BROKER +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_UPDATE_STATISTICS_ASYNC OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET DATE_CORRELATION_OPTIMIZATION OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET TRUSTWORTHY OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET ALLOW_SNAPSHOT_ISOLATION OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET PARAMETERIZATION SIMPLE +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET READ_COMMITTED_SNAPSHOT OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET HONOR_BROKER_PRIORITY OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET RECOVERY FULL +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET MULTI_USER +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET PAGE_VERIFY CHECKSUM +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET DB_CHAINING OFF +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF ) +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET TARGET_RECOVERY_TIME = 0 SECONDS +GO +ALTER DATABASE [<%=@sqlserverdbname%>] SET DELAYED_DURABILITY = DISABLED +GO +EXEC sys.sp_db_vardecimal_storage_format N'<%=@sqlserverdbname%>', N'ON' +GO +USE [<%=@sqlserverdbname%>] +GO +/****** Object: FullTextCatalog [WallsFTSCatalog] Script Date: 2/6/2018 1:34:16 PM ******/ +CREATE FULLTEXT CATALOG [WallsFTSCatalog] WITH ACCENT_SENSITIVITY = ON +GO +/****** Object: UserDefinedFunction [dbo].[LogSearch] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + +CREATE FUNCTION [dbo].[LogSearch] + (@column NVARCHAR(4000), @searchText NVARCHAR(4000)) +RETURNS @tbl TABLE (ErrorLogId int NOT NULL) AS + BEGIN + IF (@column = 'LogException') + BEGIN + INSERT INTO @tbl SELECT [ErrorLogId] + FROM ErrorLog WHERE CONTAINS(ErrorLog.LogException, @searchText) + END + ELSE IF (@column = 'LogMessage') + BEGIN + INSERT INTO @tbl SELECT [ErrorLogId] + FROM ErrorLog WHERE CONTAINS(ErrorLog.LogMessage, @searchText) + END + ELSE + BEGIN + INSERT INTO @tbl SELECT [ErrorLogId] + FROM ErrorLog WHERE CONTAINS(ErrorLog.*, @searchText) + END + RETURN + END +GO +/****** Object: UserDefinedFunction [dbo].[SplitUdf] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + +-- ============================================= +-- Description: Splits the @sourceString by the delimiter (currently char(13) + char(10)) +-- Parameter: @sourceString - The input string to split +-- Parameter: @udfIsDate - Indicates, whether the @sourceString is of date type. This causes an additional check. +-- Returns: DataTable with values +-- ============================================= +CREATE FUNCTION [dbo].[SplitUdf] (@sourceString nvarchar(200), @udfIsDate bit) +RETURNS @tbl TABLE (Value nvarchar(200) NULL) AS +BEGIN + DECLARE @pos int, + @nextpos int, + @valuelen int, + @delimiterlen int, + @offset int, + @delimiter nchar(2), + @value nvarchar(50) + + SELECT @pos = 0, + @nextpos = 1, + @delimiter = char(13) + char(10), -- the current multi-valued UDF delimiter + @delimiterlen = 2 -- the length of the current delimiter + + SELECT @value = LTRIM(RTRIM(@sourceString)) + -- if the source string contains the delimiter, split the string + IF (@sourceString LIKE '%' + @delimiter + '%') + BEGIN + WHILE @nextpos > 0 + BEGIN + SELECT @offset = CASE WHEN @pos > 0 THEN @delimiterlen ELSE 1 END + SELECT @nextpos = CHARINDEX(@delimiter, @sourceString, @pos + 1) + SELECT @valuelen = CASE WHEN @nextpos > 0 THEN @nextpos ELSE LEN(@sourceString) + 1 END - @pos - @offset + SELECT @value = LTRIM(RTRIM(SUBSTRING(@sourceString, @pos + @offset, @valuelen))) + IF (LEN(@value) > 0) + BEGIN + -- if UDF is of date type, check, whether @value is date + IF (@udfIsDate > 0) + BEGIN + IF (ISDATE(@value) > 0) + BEGIN + INSERT INTO @tbl (Value) VALUES (@value) + END + END + ELSE + INSERT INTO @tbl (Value) VALUES (@value) + END + SELECT @pos = @nextpos + END + RETURN + END + -- if the source string does not contain the delimiter, just return it + ELSE IF (LEN(@value) > 0) + BEGIN + -- if UDF is of date type, check, whether @value is date + IF (@udfIsDate > 0) + BEGIN + IF (ISDATE(@value) > 0) + BEGIN + INSERT INTO @tbl (Value) VALUES (@value) + END + END + ELSE + INSERT INTO @tbl (Value) VALUES (@value) + END + RETURN +END +GO +/****** Object: Table [dbo].[AccessHistory] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AccessHistory]( + [AccessHistoryId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [WallSideId] [int] NOT NULL, + [UserEntityId] [int] NULL, + [ActivityType] [nvarchar](10) NOT NULL, + [IsPending] [bit] NOT NULL, + CONSTRAINT [PK_AccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Activities] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Activities]( + [ActivityId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryTypeId] [int] NOT NULL, + [ActivityName] [nvarchar](255) NOT NULL, + [ActivityRemoteLabel] [nvarchar](255) NOT NULL, + [ActivityCategoryId] [int] NOT NULL, + CONSTRAINT [PK_Activities] PRIMARY KEY CLUSTERED +( + [ActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ActivityCategories] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ActivityCategories]( + [ActivityCategoryId] [int] IDENTITY(1,1) NOT NULL, + [ActivityCategoryName] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_ActivityCategories] PRIMARY KEY CLUSTERED +( + [ActivityCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[AlertDetails] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AlertDetails]( + [AlertDetailId] [int] IDENTITY(1,1) NOT NULL, + [AlertId] [int] NOT NULL, + [ActivityRemoteLabel] [nvarchar](255) NULL, + [ActivityName] [nvarchar](255) NOT NULL, + [RepositoryRemoteLabel] [nvarchar](255) NOT NULL, + [RepositoryName] [nvarchar](255) NOT NULL, + [RemoteObjectId] [nvarchar](100) NULL, + [RemoteObjectName] [nvarchar](255) NULL, + [RemoteObjectType] [nvarchar](255) NULL, + [RemoteObjectOwner] [nvarchar](255) NULL, + [ClientName] [nvarchar](255) NULL, + [MatterName] [nvarchar](255) NULL, + [EventTime] [datetime] NOT NULL, + [Custom1] [nvarchar](255) NULL, + [Custom2] [nvarchar](255) NULL, + [Custom3] [nvarchar](255) NULL, + [Custom4] [nvarchar](255) NULL, + [Custom5] [nvarchar](255) NULL, + [Created] [datetime] NOT NULL, + [RemoteObjectVersion] [nvarchar](10) NULL, + [ClientId] [nvarchar](100) NULL, + [MatterId] [nvarchar](100) NULL, + CONSTRAINT [PK_TrackerAlertDetails] PRIMARY KEY CLUSTERED +( + [AlertDetailId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[AlertDetailsCustomFields] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AlertDetailsCustomFields]( + [FieldId] [nvarchar](255) NOT NULL, + [FieldName] [varchar](50) NOT NULL, + [IsEnabled] [bit] NOT NULL, + [AlertDetailsCustomFieldId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryTypeId] [int] NULL, + CONSTRAINT [PK_CustomFields] PRIMARY KEY CLUSTERED +( + [AlertDetailsCustomFieldId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Alerts] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Alerts]( + [AlertId] [int] IDENTITY(1,1) NOT NULL, + [TrackerExecutionId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [UserName] [nvarchar](255) NULL, + [ActivityCount] [int] NOT NULL, + [StatisticsValue] [decimal](10, 2) NULL, + CONSTRAINT [PK_TrackerAlerts] PRIMARY KEY CLUSTERED +( + [AlertId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationRolesAT] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationRolesAT]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleName] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_ApplicationRolesAT] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationRolesMTM] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationRolesMTM]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleName] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_ApplicationRolesMTM] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationRolesWB] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationRolesWB]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleName] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_Roles] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationUsers] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationUsers]( + [UserId] [int] IDENTITY(1,1) NOT NULL, + [WBRoleId] [int] NULL, + [UserName] [nvarchar](50) NOT NULL, + [Password] [nvarchar](50) NOT NULL, + [Name] [nvarchar](100) NULL, + [Email] [nvarchar](100) NULL, + [IsEnabled] [bit] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [LastLogin] [datetime] NULL, + [MTMRoleId] [int] NULL, + [ATRoleId] [int] NULL, + [InsidersModuleAccess] [bit] NOT NULL, + CONSTRAINT [PK_ApplicationUsers] PRIMARY KEY CLUSTERED +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Attachments] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Attachments]( + [AttachmentId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [FileName] [nvarchar](255) NOT NULL, + [FileSize] [int] NOT NULL, + [FileContentType] [nvarchar](75) NULL, + [FileContent] [image] NULL, + [CreatorId] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_Attachments] PRIMARY KEY CLUSTERED +( + [AttachmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[AttorneyAcknowledgments] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AttorneyAcknowledgments]( + [AcknowledgmentId] [int] IDENTITY(1,1) NOT NULL, + [WallSideId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [isAcknowledged] [bit] NOT NULL, + [DateOfAcceptance] [datetime] NULL, + [DateOfNotice] [datetime] NULL, + [isArchived] [bit] NOT NULL, + CONSTRAINT [PK_AttorneyAcknowledgments] PRIMARY KEY CLUSTERED +( + [AcknowledgmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[CommonTerms] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[CommonTerms]( + [OriginalValue] [nvarchar](50) NOT NULL, + [ReplacedValue] [nvarchar](50) NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Config] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Config]( + [ConfigId] [int] IDENTITY(1,1) NOT NULL, + [ConfigVariable] [nvarchar](255) NOT NULL, + [ConfigValue1] [nvarchar](max) NULL, + [ConfigValue2] [nvarchar](4000) NULL, + [Category] [nvarchar](64) NULL, + [ConfigType] [nvarchar](50) NULL, + [MetaData] [nvarchar](max) NULL, + [SubCategoryOf] [nvarchar](255) NULL, + CONSTRAINT [PK_Config] PRIMARY KEY CLUSTERED +( + [ConfigId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[DefaultNotifications] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DefaultNotifications]( + [NotificationId] [int] NOT NULL, + [WallAccessTypeId] [int] NOT NULL, + CONSTRAINT [PK_DefaultNotifications] PRIMARY KEY CLUSTERED +( + [NotificationId] ASC, + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DefaultTrackers] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DefaultTrackers]( + [TrackerId] [int] NOT NULL, + [WallAccessTypeId] [int] NOT NULL, + CONSTRAINT [PK_DefaultTrackers] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC, + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DigestNotificationAttachments] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DigestNotificationAttachments]( + [NotificationAttachmentId] [int] NOT NULL, + [DigestNotificationId] [bigint] NOT NULL, + CONSTRAINT [PK_DigestNotificationAttachments] PRIMARY KEY CLUSTERED +( + [NotificationAttachmentId] ASC, + [DigestNotificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DigestNotificationContent] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DigestNotificationContent]( + [DigestNotificationContentId] [int] IDENTITY(1,1) NOT NULL, + [NotificationText] [ntext] NULL, + [Subject] [nvarchar](1000) NULL, + [From] [nvarchar](1000) NULL, + CONSTRAINT [PK_DigestNotificationInfo] PRIMARY KEY CLUSTERED +( + [DigestNotificationContentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[DigestNotifications] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DigestNotifications]( + [DigestNotificationId] [bigint] IDENTITY(1,1) NOT NULL, + [NotificationId] [int] NOT NULL, + [EmailAddress] [nvarchar](50) NULL, + [CreatedDate] [datetime] NOT NULL, + [DigestNotificationContentId] [int] NOT NULL, + [NotificationHistoryId] [int] NULL, + CONSTRAINT [PK_DigestNotifications] PRIMARY KEY CLUSTERED +( + [DigestNotificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DynamicEntityGroupDefinitions] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DynamicEntityGroupDefinitions]( + [EntityId] [int] NOT NULL, + [DefinitionXml] [nvarchar](4000) NOT NULL, + [CreatedBy] [int] NULL, + CONSTRAINT [PK_DDynamicEntityGroupDefinitions] PRIMARY KEY CLUSTERED +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DynamicEntityGroupExceptions] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DynamicEntityGroupExceptions]( + [DynamicGroupEntityId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [CreatorId] [int] NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_DynamicEntityGroupExceptions] PRIMARY KEY CLUSTERED +( + [DynamicGroupEntityId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[Entities] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Entities]( + [EntityId] [int] IDENTITY(1,1) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [EntityRemoteSystemId] [nvarchar](100) NULL, + [EntityDescription] [nvarchar](255) NULL, + [ParentTypeId] [int] NULL, + [ParentRemoteSystemId] [nvarchar](100) NULL, + [ParentDescription] [nvarchar](255) NULL, + [EntityCustomData] [nvarchar](255) NULL, + [RecordsSystemId] [nvarchar](100) NULL, + [FinancialSystemId] [nvarchar](100) NULL, + [TimeEntrySystemId] [nvarchar](100) NULL, + [WindowsNetworkLogon] [nvarchar](100) NULL, + [CustomField1] [nvarchar](1000) NULL, + [CustomField2] [nvarchar](1000) NULL, + [CustomField3] [nvarchar](1000) NULL, + [CustomField4] [nvarchar](1000) NULL, + [CustomField5] [nvarchar](1000) NULL, + [CustomField6] [nvarchar](1000) NULL, + [CustomField7] [nvarchar](1000) NULL, + [CustomField8] [nvarchar](1000) NULL, + [CustomField9] [nvarchar](1000) NULL, + [CustomField10] [nvarchar](1000) NULL, + [IsEnabledForSearch] [bit] NOT NULL, + [Modified] [datetime] NULL, + [Created] [datetime] NULL, + [MatterOpenStatus] [bit] NULL, + [MatterConfidentialityStatus] [nvarchar](255) NULL, + [MatterTeamEntityId] [int] NULL, + [CustomField11] [nvarchar](1000) NULL, + [CustomField12] [nvarchar](1000) NULL, + [CustomField13] [nvarchar](1000) NULL, + [CustomField14] [nvarchar](1000) NULL, + [CustomField15] [nvarchar](1000) NULL, + [CustomField16] [nvarchar](1000) NULL, + [CustomField17] [nvarchar](1000) NULL, + [CustomField18] [nvarchar](1000) NULL, + [CustomField19] [nvarchar](1000) NULL, + [CustomField20] [nvarchar](1000) NULL, + [CustomField21] [nvarchar](1000) NULL, + [CustomField22] [nvarchar](1000) NULL, + [CustomField23] [nvarchar](1000) NULL, + [CustomField24] [nvarchar](1000) NULL, + [CustomField25] [nvarchar](1000) NULL, + [CustomField26] [nvarchar](1000) NULL, + [CustomField27] [nvarchar](1000) NULL, + [CustomField28] [nvarchar](1000) NULL, + [CustomField29] [nvarchar](1000) NULL, + [CustomField30] [nvarchar](1000) NULL, + [EntityDisplayId] [nvarchar](100) NULL, + [CrmSystemId] [nvarchar](100) NULL, + [TimeBuilderSystemId] [nvarchar](100) NULL, + [FileshareRemoteSystemId] [nvarchar](100) NULL, + [OpenSystemId] [nvarchar](100) NULL, + [NotificationRoleId] [int] NOT NULL, + CONSTRAINT [PK_Entities] PRIMARY KEY CLUSTERED +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntitiesMatterTeamFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntitiesMatterTeamFields]( + [MatterTeamEntityId] [int] NOT NULL, + [IsSelfMaintained] [bit] NOT NULL, + [SelfMaintainingMinHours] [int] NULL, + [SelfMaintainingPeriod] [int] NULL, + [SelfMaintainingPeriodUnit] [nvarchar](32) NULL, + [IsRelationshipPaired] [bit] NOT NULL, + [SelfMaintainingPeriodStart] [datetime] NULL, + [SelfMaintainingPeriodEnd] [datetime] NULL, + CONSTRAINT [PK_EntitiesMatterTeamFields] PRIMARY KEY CLUSTERED +( + [MatterTeamEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntitiesUserFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntitiesUserFields]( + [UserEntityId] [int] NOT NULL, + [IsExceptedFromActiveDirectoryGroups] [bit] NOT NULL, + [IsExceptedFromJoiningMatterTeam] [bit] NOT NULL, + CONSTRAINT [PK_EntitiesUserFields] PRIMARY KEY CLUSTERED +( + [UserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityCustomComboValues] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityCustomComboValues]( + [Field] [nvarchar](32) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [Value] [nvarchar](200) NOT NULL, + CONSTRAINT [PK_EntityCustomComboValues] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [EntityTypeId] ASC, + [Value] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityCustomFieldConfig] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityCustomFieldConfig]( + [Field] [nvarchar](32) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [DisplayName] [nvarchar](64) NOT NULL, + [Type] [nvarchar](32) NOT NULL, + [Description] [nvarchar](100) NOT NULL, + [IsIncludedInNotifications] [bit] NOT NULL, + [IsIncludedInEntityTooltip] [bit] NOT NULL, + [IsMultiValued] [bit] NOT NULL, + [IsIncludedInExtendedValidation] [bit] NOT NULL, + [IsIncludedInGeneralInformation] [bit] NOT NULL, + [IsConfidential] [bit] NOT NULL, + [DateTimeFormat] [nvarchar](50) NULL, + CONSTRAINT [PK_EntityCustomFieldConfig] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityKeyMap] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityKeyMap]( + [EntityId] [int] NOT NULL, + [ParentEntityId] [int] NOT NULL, + [RoleId] [int] NULL, + [Reason] [nvarchar](250) NULL, + [ExpirationDate] [datetime] NULL, + [IsActive] [bit] NOT NULL, + [DemotionRoleId] [int] NULL, + [IsMTHistoryConflict] [bit] NOT NULL, + CONSTRAINT [PK_EntityKeyMap] PRIMARY KEY CLUSTERED +( + [EntityId] ASC, + [ParentEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityRelationshipTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityRelationshipTypes]( + [EntityRelationshipTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](200) NOT NULL, + [PrimaryType] [nvarchar](100) NOT NULL, + [SubordinateType] [nvarchar](100) NOT NULL, + [IsDirectRelationshipValidated] [bit] NOT NULL, + [IsSharedRelationshipValidated] [bit] NOT NULL, + CONSTRAINT [PK_EntityRelationshipTypes] PRIMARY KEY CLUSTERED +( + [EntityRelationshipTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityToEntityRelationships] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityToEntityRelationships]( + [EntityRelationshipTypeId] [int] NOT NULL, + [PrimaryEntityId] [int] NOT NULL, + [SubordinateEntityId] [int] NOT NULL, + CONSTRAINT [PK_EntityToEntityRelationships] PRIMARY KEY CLUSTERED +( + [EntityRelationshipTypeId] ASC, + [PrimaryEntityId] ASC, + [SubordinateEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityTypes]( + [EntityTypeId] [int] IDENTITY(1,1) NOT NULL, + [EntityType] [nvarchar](100) NOT NULL, + [EntityTypePl] [nvarchar](100) NOT NULL, + [IsUserType] [bit] NOT NULL, + CONSTRAINT [PK_EntityTypes] PRIMARY KEY CLUSTERED +( + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ErrorLog] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ErrorLog]( + [ErrorLogId] [int] IDENTITY(1,1) NOT NULL, + [ServiceType] [nvarchar](64) NOT NULL, + [ServiceId] [nvarchar](255) NULL, + [LogLevel] [nvarchar](32) NOT NULL, + [LogMessage] [ntext] NOT NULL, + [LogException] [ntext] NULL, + [Created] [datetime] NOT NULL, + CONSTRAINT [PK_ErrorLog] PRIMARY KEY CLUSTERED +( + [ErrorLogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExtensionQueryResults] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExtensionQueryResults]( + [ExtensionQueryResultId] [int] IDENTITY(1,1) NOT NULL, + [RequestId] [nvarchar](128) NOT NULL, + [ExtensionServiceName] [nvarchar](255) NOT NULL, + [Status] [nvarchar](64) NOT NULL, + [ResultXml] [nvarchar](max) NULL, + [LastUpdateTime] [datetime] NOT NULL, + [Messages] [nvarchar](max) NULL, + CONSTRAINT [PK_ExtensionQueryResults] PRIMARY KEY CLUSTERED +( + [ExtensionQueryResultId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExtensionServiceJobs] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExtensionServiceJobs]( + [ExtensionServiceJobsId] [int] IDENTITY(1,1) NOT NULL, + [ExtensionServiceName] [nvarchar](255) NOT NULL, + [ExtensionType] [nvarchar](64) NULL, + [LibraryName] [nvarchar](128) NULL, + [JobType] [nvarchar](255) NOT NULL, + [JobXML] [ntext] NULL, + [JobState] [nvarchar](32) NOT NULL, + [FinalStatus] [nvarchar](32) NULL, + [Retries] [int] NOT NULL, + [QueueTime] [datetime] NOT NULL, + [StateLastChangedTime] [datetime] NOT NULL, + [StartTime] [datetime] NULL, + [EndTime] [datetime] NULL, + [Messages] [ntext] NULL, + [OperationId] [uniqueidentifier] NULL, + CONSTRAINT [PK_ExtensionServiceJobs] PRIMARY KEY CLUSTERED +( + [ExtensionServiceJobsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExtensionServiceLocks] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExtensionServiceLocks]( + [LockName] [nvarchar](256) NOT NULL, + [LockTime] [datetime] NOT NULL, + CONSTRAINT [PK_ExtensionServiceLocks] PRIMARY KEY CLUSTERED +( + [LockName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExternalUserFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExternalUserFields]( + [ExternalUserEntityId] [int] NOT NULL, + [CreatedBy] [int] NOT NULL, + CONSTRAINT [PK_ExternalUserFields] PRIMARY KEY CLUSTERED +( + [ExternalUserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExternalUsersAccessHistory] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExternalUsersAccessHistory]( + [AccessHistoryId] [int] IDENTITY(1,1) NOT NULL, + [ExternalUserEntityId] [int] NOT NULL, + [MatterEntityId] [int] NOT NULL, + [ActivityType] [nvarchar](10) NOT NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityReason] [nvarchar](1000) NULL, + CONSTRAINT [PK_ExternalUsersAccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[FileShareADGroupStatuses] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[FileShareADGroupStatuses]( + [GroupName] [nvarchar](256) NOT NULL, + [LastAccessTime] [datetime] NOT NULL, + [LastModificationTime] [datetime] NULL, + [SecurityId] [varchar](184) NULL, + CONSTRAINT [PK_FileShareADGroupStatuses] PRIMARY KEY CLUSTERED +( + [GroupName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[GlobalExceptions] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[GlobalExceptions]( + [EntityId] [int] NOT NULL, + [CreatorId] [int] NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_GlobalExceptions] PRIMARY KEY CLUSTERED +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[GroupEntityLog] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[GroupEntityLog]( + [LogId] [int] IDENTITY(1,1) NOT NULL, + [User] [nvarchar](255) NOT NULL, + [GroupEntityId] [int] NOT NULL, + [LogMessageType] [nvarchar](50) NOT NULL, + [LogMessage] [ntext] NULL, + [Created] [datetime] NOT NULL, + CONSTRAINT [PK_GroupEntityLog] PRIMARY KEY CLUSTERED +( + [LogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[HiddenMatterTeams] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[HiddenMatterTeams]( + [HiddenMatterTeamId] [int] IDENTITY(1,1) NOT NULL, + [UserId] [int] NOT NULL, + [UserIdType] [nvarchar](10) NOT NULL, + [MatterTeamEntityId] [int] NOT NULL, + CONSTRAINT [PK_HiddenMatterTeams] PRIMARY KEY CLUSTERED +( + [HiddenMatterTeamId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[InsidersReportFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[InsidersReportFields]( + [InsidersReportFieldsId] [int] NOT NULL, + [FieldName] [nvarchar](128) NULL, + [FieldType] [nvarchar](255) NOT NULL, + [Description] [nvarchar](255) NOT NULL, + [TableName] [nvarchar](255) NULL, + [ColumnName] [nvarchar](255) NULL, + [EntityTypeId] [int] NULL, + [OrderId] [int] NOT NULL, + [EmptyText] [nvarchar](100) NULL, + [IsHeaderField] [bit] NOT NULL, + [DateTimeFormat] [nvarchar](50) NULL, + [IsPermanentInsiders] [bit] NOT NULL, + CONSTRAINT [PK_InsidersReportFields] PRIMARY KEY CLUSTERED +( + [InsidersReportFieldsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[InsidersReportLogs] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[InsidersReportLogs]( + [InsidersReportLogId] [int] IDENTITY(1,1) NOT NULL, + [ApplicationUserId] [int] NOT NULL, + [MatterEntityId] [int] NULL, + [LogMessage] [nvarchar](max) NOT NULL, + [Created] [datetime] NOT NULL, + CONSTRAINT [PK_InsidersReportLogs] PRIMARY KEY CLUSTERED +( + [InsidersReportLogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[InsidersReports] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[InsidersReports]( + [InsidersReportsId] [int] IDENTITY(1,1) NOT NULL, + [MatterEntityID] [int] NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [LastRun] [datetime] NOT NULL, + [ReportXML] [ntext] NOT NULL, + CONSTRAINT [PK_InsidersReports] PRIMARY KEY CLUSTERED +( + [InsidersReportsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[Log] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Log]( + [LogId] [int] IDENTITY(1,1) NOT NULL, + [UserId] [int] NULL, + [WallId] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [LogMessage] [ntext] NULL, + [LogMessageType] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_Log] PRIMARY KEY CLUSTERED +( + [LogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterAccessHistory] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterAccessHistory]( + [AccessHistoryId] [int] NOT NULL, + [MatterEntityId] [int] NOT NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityReason] [nvarchar](1000) NULL, + [WasAddedBySelfMaintaining] [bit] NOT NULL, + CONSTRAINT [PK_MatterAccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC, + [MatterEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamExceptions] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamExceptions]( + [MatterTeamEntityId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [Creator] [nvarchar](255) NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_MatterTeamExceptions] PRIMARY KEY CLUSTERED +( + [MatterTeamEntityId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamHistories] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamHistories]( + [MatterTeamHistoryId] [int] IDENTITY(1,1) NOT NULL, + [MatterEntityId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [RoleId] [int] NOT NULL, + [Reason] [nvarchar](max) NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityTypeId] [tinyint] NOT NULL, + [Creator] [nvarchar](255) NOT NULL, + [IsActive] [bit] NOT NULL, + CONSTRAINT [PK_MatterTeamHistories] PRIMARY KEY CLUSTERED +( + [MatterTeamHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamHistoryActivityTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamHistoryActivityTypes]( + [ActivityTypeId] [tinyint] IDENTITY(0,1) NOT NULL, + [ActivityTypeName] [nvarchar](100) NOT NULL, + CONSTRAINT [PK_MatterTeamHistoryActivityTypes] PRIMARY KEY CLUSTERED +( + [ActivityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamRole] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamRole]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleDescription] [nvarchar](100) NOT NULL, + [IsAdmin] [bit] NOT NULL, + [IsDelegate] [bit] NOT NULL, + [WallRoleId] [int] NOT NULL, + [IsExceptedFromInactiveStatus] [bit] NOT NULL, + [IsRestrictedToGlobalAdmins] [bit] NOT NULL, + [CanRemoveUsers] [bit] NOT NULL, + [CanSubscribeUsers] [bit] NOT NULL, + CONSTRAINT [PK_MatterTeamRole] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamSubscriptionRequests] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamSubscriptionRequests]( + [RequestId] [int] IDENTITY(1,1) NOT NULL, + [MatterTeamId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [RequestDate] [datetime] NOT NULL, + [ResponseDate] [datetime] NULL, + [Status] [bit] NULL, + [Reason] [nvarchar](255) NULL, + [AdminEntityId] [int] NULL, + CONSTRAINT [PK_MatterTeamSubscriptionRequests] PRIMARY KEY CLUSTERED +( + [RequestId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[NotificationAttachments] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[NotificationAttachments]( + [NotificationId] [int] NOT NULL, + [AttachmentId] [int] NOT NULL, + CONSTRAINT [PK_NotificationAttachments] PRIMARY KEY CLUSTERED +( + [NotificationId] ASC, + [AttachmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[NotificationHistory] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[NotificationHistory]( + [NotificationHistoryId] [int] IDENTITY(1,1) NOT NULL, + [UserEntityId] [int] NOT NULL, + [NotificationId] [int] NOT NULL, + [NotificationSentDate] [datetime] NULL, + [AcknowledgmentId] [int] NULL, + CONSTRAINT [PK_NotificationHistory] PRIMARY KEY CLUSTERED +( + [NotificationHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[NotificationRoles] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[NotificationRoles]( + [NotificationRoleId] [int] NOT NULL, + [WallAccessTypeId] [int] NOT NULL, + [IsExceptedFromNotifications] [bit] NOT NULL, + [IsExceptedFromAcknowledgements] [bit] NOT NULL, + CONSTRAINT [PK_NotificationRoles] PRIMARY KEY CLUSTERED +( + [NotificationRoleId] ASC, + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Notifications] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Notifications]( + [NotificationId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [RecipientList] [nvarchar](1000) NOT NULL, + [NotificationText] [ntext] NULL, + [ForceNotification] [bit] NOT NULL, + [IsEnabled] [bit] NOT NULL, + [LastNotification] [datetime] NULL, + [IncludeAcknowledgments] [bit] NOT NULL, + [NotificationType] [nvarchar](50) NOT NULL, + [NextNotification] [datetime] NULL, + [TimeNumber] [int] NULL, + [TimeUnit] [nvarchar](30) NULL, + [Scope] [nvarchar](40) NOT NULL, + [CcList] [nvarchar](1000) NULL, + [BccList] [nvarchar](1000) NULL, + [From] [nvarchar](1000) NULL, + [NotificationName] [nvarchar](150) NOT NULL, + [Subject] [nvarchar](255) NULL, + [CreatorId] [int] NOT NULL, + [TriggerEvents] [smallint] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [IsDigest] [bit] NOT NULL, + CONSTRAINT [PK_Notifications] PRIMARY KEY CLUSTERED +( + [NotificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ObjectReleaseExceptions] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ObjectReleaseExceptions]( + [ObjectReleaseExceptionId] [int] IDENTITY(1,1) NOT NULL, + [ExtensionType] [nvarchar](64) NOT NULL, + [LibraryName] [nvarchar](255) NOT NULL, + [EntityId] [int] NOT NULL, + [ObjectType] [nvarchar](32) NOT NULL, + [ObjectId] [nvarchar](64) NOT NULL, + [ObjectName] [nvarchar](512) NULL, + [PrincipalName] [nvarchar](512) NOT NULL, + [PrincipalType] [nvarchar](32) NOT NULL, + [PrincipalId] [nvarchar](255) NOT NULL, + [Reason] [ntext] NULL, + [ExpirationDate] [datetime] NULL, + CONSTRAINT [PK_ObjectReleaseExceptions] PRIMARY KEY CLUSTERED +( + [ObjectReleaseExceptionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ObjectTemplate] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ObjectTemplate]( + [ObjectTemplateId] [int] IDENTITY(1,1) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [Name] [nvarchar](150) NOT NULL, + [TemplateText] [ntext] NULL, + [CreatorId] [int] NOT NULL, + [SeparatorType] [int] NOT NULL, + [Separator] [nvarchar](100) NULL, + CONSTRAINT [PK_ObjectTemplate] PRIMARY KEY CLUSTERED +( + [ObjectTemplateId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[PermanentInsidersAccessHistory] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PermanentInsidersAccessHistory]( + [AccessHistoryId] [int] IDENTITY(1,1) NOT NULL, + [UserEntityId] [int] NOT NULL, + [ActivityType] [nvarchar](10) NOT NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityReason] [nvarchar](1000) NULL, + CONSTRAINT [PK_PermanentInsidersAccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PolicyCategories] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PolicyCategories]( + [PolicyCategoryId] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](255) NOT NULL, + [DisplayName] [nvarchar](255) NOT NULL, + [PolicyCategoryGroupId] [int] NOT NULL, + CONSTRAINT [PK_PolicyCategories] PRIMARY KEY CLUSTERED +( + [PolicyCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PolicyCategoryGroups] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PolicyCategoryGroups]( + [PolicyCategoryGroupId] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_PolicyCategoryGroups] PRIMARY KEY CLUSTERED +( + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingAccessExplicit] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingAccessExplicit]( + [UserEntityId] [int] NOT NULL, + [ClientEntityId] [int] NOT NULL, + [MatterEntityId] [int] NULL, + [AllowingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingAccessImplicit] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingAccessImplicit]( + [UserEntityId] [int] NOT NULL, + [ClientEntityId] [int] NOT NULL, + [MatterEntityId] [int] NULL, + [ConflictingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingSharedResourcesExplicit] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingSharedResourcesExplicit]( + [AllowedUserEntityId] [int] NOT NULL, + [DeniedUserEntityId] [int] NOT NULL, + [ClientEntityID] [int] NOT NULL, + [MatterEntityID] [int] NULL, + [AllowingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL, + [Resource] [nvarchar](200) NOT NULL, + [ResourceType] [nvarchar](200) NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingSharedResourcesImplicit] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingSharedResourcesImplicit]( + [ConflictingUserEntityId] [int] NOT NULL, + [DeniedUserEntityId] [int] NOT NULL, + [ClientEntityID] [int] NOT NULL, + [MatterEntityID] [int] NULL, + [ConflictingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL, + [Resource] [nvarchar](200) NOT NULL, + [ResourceType] [nvarchar](200) NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportFields]( + [ReportFieldId] [int] NOT NULL, + [FieldName] [nvarchar](128) NULL, + [ReportTypeId] [int] NOT NULL, + [FieldType] [nvarchar](255) NOT NULL, + [Description] [nvarchar](255) NOT NULL, + [TableName] [nvarchar](255) NOT NULL, + [ColumnName] [nvarchar](255) NULL, + [IsQueryable] [bit] NOT NULL, + [IsSearchable] [bit] NOT NULL, + [IsDefault] [bit] NOT NULL, + [OrderId] [int] NOT NULL, + CONSTRAINT [PK_ReportFields] PRIMARY KEY CLUSTERED +( + [ReportFieldId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Reports] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Reports]( + [ReportId] [int] IDENTITY(1,1) NOT NULL, + [UserId] [int] NOT NULL, + [ReportTypeId] [int] NOT NULL, + [Name] [nvarchar](100) NOT NULL, + [Created] [datetime] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [ReportXml] [ntext] NULL, + CONSTRAINT [PK_Reports] PRIMARY KEY CLUSTERED +( + [ReportId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportSchedules] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportSchedules]( + [ReportScheduleID] [int] IDENTITY(1,1) NOT NULL, + [ReportID] [int] NOT NULL, + [Subject] [nvarchar](1000) NULL, + [RecipientList] [nvarchar](1000) NOT NULL, + [RecipientAppUsers] [bit] NOT NULL, + [FrequencyType] [nvarchar](50) NOT NULL, + [FrequencyInterval] [int] NULL, + [FrequencyUnit] [nvarchar](50) NULL, + [SkipIfNoData] [bit] NOT NULL, + [IsEnabled] [bit] NOT NULL, + [NextTimeDue] [datetime] NULL, + [LastTimeRun] [datetime] NULL, + CONSTRAINT [PK_ReportSchedules] PRIMARY KEY CLUSTERED +( + [ReportScheduleID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportsConflictingLatestUpdateDate] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportsConflictingLatestUpdateDate]( + [ReportTypeId] [int] NOT NULL, + [LatestUpdateDate] [datetime] NOT NULL, + [UpdateStartTime] [datetime] NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportTypes]( + [ReportTypeId] [int] IDENTITY(1,1) NOT NULL, + [ReportTypeName] [nvarchar](100) NOT NULL, + [ReportTypeDescription] [nvarchar](255) NULL, + [ParentReportTypeId] [int] NULL, + [PolicyCategoryGroupId] [int] NULL, + CONSTRAINT [PK_ReportTypes] PRIMARY KEY CLUSTERED +( + [ReportTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Repositories] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Repositories]( + [RepositoryId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryTypeId] [int] NOT NULL, + [RepositoryName] [nvarchar](255) NOT NULL, + [RepositoryRemoteLabel] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_Repositories] PRIMARY KEY CLUSTERED +( + [RepositoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RepositoryTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RepositoryTypes]( + [RepositoryTypeId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryType] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_RepositoryTypes] PRIMARY KEY CLUSTERED +( + [RepositoryTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ScheduledSecurityRepairStatus] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ScheduledSecurityRepairStatus]( + [ScheduledSecurityRepairStatusId] [int] IDENTITY(1,1) NOT NULL, + [ExtensionType] [nvarchar](64) NOT NULL, + [LibraryName] [nvarchar](255) NOT NULL, + [ObjectType] [nvarchar](32) NOT NULL, + [LastRepairTime] [datetime] NULL, + [Status] [nvarchar](32) NOT NULL, + [LastRepairId] [nvarchar](64) NULL, + CONSTRAINT [PK_ScheduledSecurityRepairStatus] PRIMARY KEY CLUSTERED +( + [ExtensionType] ASC, + [LibraryName] ASC, + [ObjectType] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_BLOB_TRIGGERS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_BLOB_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [BLOB_DATA] [image] NULL +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_CALENDARS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_CALENDARS]( + [CALENDAR_NAME] [varchar](200) NOT NULL, + [CALENDAR] [image] NOT NULL, + CONSTRAINT [PK_SCHEDULER_CALENDARS] PRIMARY KEY CLUSTERED +( + [CALENDAR_NAME] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_CRON_TRIGGERS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_CRON_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [CRON_EXPRESSION] [varchar](120) NOT NULL, + [TIME_ZONE_ID] [varchar](80) NULL, + CONSTRAINT [PK_SCHEDULER_CRON_TRIGGERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_FIRED_TRIGGERS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_FIRED_TRIGGERS]( + [ENTRY_ID] [varchar](95) NOT NULL, + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [IS_VOLATILE] [varchar](1) NOT NULL, + [INSTANCE_NAME] [varchar](200) NOT NULL, + [FIRED_TIME] [bigint] NOT NULL, + [PRIORITY] [int] NOT NULL, + [STATE] [varchar](16) NOT NULL, + [JOB_NAME] [varchar](200) NULL, + [JOB_GROUP] [varchar](200) NULL, + [IS_STATEFUL] [varchar](1) NULL, + [REQUESTS_RECOVERY] [varchar](1) NULL, + CONSTRAINT [PK_SCHEDULER_FIRED_TRIGGERS] PRIMARY KEY CLUSTERED +( + [ENTRY_ID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_JOB_DETAILS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_JOB_DETAILS]( + [JOB_NAME] [varchar](200) NOT NULL, + [JOB_GROUP] [varchar](200) NOT NULL, + [DESCRIPTION] [varchar](250) NULL, + [JOB_CLASS_NAME] [varchar](250) NOT NULL, + [IS_DURABLE] [varchar](1) NOT NULL, + [IS_VOLATILE] [varchar](1) NOT NULL, + [IS_STATEFUL] [varchar](1) NOT NULL, + [REQUESTS_RECOVERY] [varchar](1) NOT NULL, + [JOB_DATA] [image] NULL, + CONSTRAINT [PK_SCHEDULER_JOB_DETAILS] PRIMARY KEY CLUSTERED +( + [JOB_NAME] ASC, + [JOB_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_JOB_LISTENERS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_JOB_LISTENERS]( + [JOB_NAME] [varchar](200) NOT NULL, + [JOB_GROUP] [varchar](200) NOT NULL, + [JOB_LISTENER] [varchar](200) NOT NULL, + CONSTRAINT [PK_SCHEDULER_JOB_LISTENERS] PRIMARY KEY CLUSTERED +( + [JOB_NAME] ASC, + [JOB_GROUP] ASC, + [JOB_LISTENER] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_LOCKS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_LOCKS]( + [LOCK_NAME] [varchar](40) NOT NULL, + CONSTRAINT [PK_SCHEDULER_LOCKS] PRIMARY KEY CLUSTERED +( + [LOCK_NAME] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_PAUSED_TRIGGER_GRPS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_PAUSED_TRIGGER_GRPS]( + [TRIGGER_GROUP] [varchar](200) NOT NULL, + CONSTRAINT [PK_SCHEDULER_PAUSED_TRIGGER_GRPS] PRIMARY KEY CLUSTERED +( + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_SCHEDULER_STATE] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_SCHEDULER_STATE]( + [INSTANCE_NAME] [varchar](200) NOT NULL, + [LAST_CHECKIN_TIME] [bigint] NOT NULL, + [CHECKIN_INTERVAL] [bigint] NOT NULL, + CONSTRAINT [PK_SCHEDULER_SCHEDULER_STATE] PRIMARY KEY CLUSTERED +( + [INSTANCE_NAME] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_SIMPLE_TRIGGERS] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_SIMPLE_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [REPEAT_COUNT] [bigint] NOT NULL, + [REPEAT_INTERVAL] [bigint] NOT NULL, + [TIMES_TRIGGERED] [bigint] NOT NULL, + CONSTRAINT [PK_SCHEDULER_SIMPLE_TRIGGERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_TRIGGER_LISTENERS] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_TRIGGER_LISTENERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [TRIGGER_LISTENER] [varchar](200) NOT NULL, + CONSTRAINT [PK_SCHEDULER_TRIGGER_LISTENERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC, + [TRIGGER_LISTENER] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_TRIGGERS] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [JOB_NAME] [varchar](200) NOT NULL, + [JOB_GROUP] [varchar](200) NOT NULL, + [IS_VOLATILE] [varchar](1) NOT NULL, + [DESCRIPTION] [varchar](250) NULL, + [NEXT_FIRE_TIME] [bigint] NULL, + [PREV_FIRE_TIME] [bigint] NULL, + [PRIORITY] [int] NULL, + [TRIGGER_STATE] [varchar](16) NOT NULL, + [TRIGGER_TYPE] [varchar](8) NOT NULL, + [START_TIME] [bigint] NOT NULL, + [END_TIME] [bigint] NULL, + [CALENDAR_NAME] [varchar](200) NULL, + [MISFIRE_INSTR] [smallint] NULL, + [JOB_DATA] [image] NULL, + CONSTRAINT [PK_SCHEDULER_TRIGGERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ScreeningLawyerKeyMap] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ScreeningLawyerKeyMap]( + [EntityId] [int] NOT NULL, + [WallId] [int] NOT NULL, + CONSTRAINT [PK_ScreeningLawyerKeyMap] PRIMARY KEY CLUSTERED +( + [EntityId] ASC, + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SummaryDetails] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SummaryDetails]( + [SummaryDetailId] [int] IDENTITY(1,1) NOT NULL, + [TrackerExecutionId] [int] NOT NULL, + [UserName] [nvarchar](255) NULL, + [UserEntityId] [int] NOT NULL, + [Activity] [nvarchar](1000) NOT NULL, + [Repository] [nvarchar](255) NOT NULL, + [ActivityCount] [int] NOT NULL, + CONSTRAINT [PK_SummaryDetails] PRIMARY KEY CLUSTERED +( + [SummaryDetailId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerActivities] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerActivities]( + [TrackerId] [int] NOT NULL, + [ActivityId] [int] NOT NULL, + CONSTRAINT [PK_TrackerActivities] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC, + [ActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerCategories] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerCategories]( + [TrackerCategoryId] [int] NOT NULL, + [Name] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_TrackerCategories] PRIMARY KEY CLUSTERED +( + [TrackerCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerClientsAndMatters] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerClientsAndMatters]( + [TrackerId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [IsInclude] [bit] NOT NULL, + [TrackerSideId] [int] NOT NULL, + CONSTRAINT [PK_TrackerClientsAndMatters] PRIMARY KEY CLUSTERED +( + [TrackerSideId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutionActivities] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutionActivities]( + [TrackerExecutionId] [int] NOT NULL, + [ActivityId] [int] NOT NULL, + CONSTRAINT [PK_TrackerExecutionActivities] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC, + [ActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutionClientsAndMatters] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutionClientsAndMatters]( + [TrackerExecutionId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [IsInclude] [bit] NOT NULL, + CONSTRAINT [PK_TrackerExecutionClientsAndMatters] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutionLibraries] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutionLibraries]( + [TrackerExecutionId] [int] NOT NULL, + [LibraryId] [int] NOT NULL, + CONSTRAINT [PK_TrackerExecutionLibraries] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC, + [LibraryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutions] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutions]( + [TrackerExecutionId] [int] IDENTITY(1,1) NOT NULL, + [TrackerId] [int] NOT NULL, + [TrackerTypeId] [int] NOT NULL, + [LinkedPolicyId] [int] NULL, + [IntervalNumber] [int] NOT NULL, + [IntervalUnit] [nvarchar](50) NOT NULL, + [TrackerLimit] [decimal](8, 2) NULL, + [Created] [datetime] NOT NULL, + [IntervalEndDate] [datetime] NOT NULL, + [IntervalStartDate] [datetime] NOT NULL, + [OnlyPrivate] [bit] NOT NULL, + [OnlyDidNotAuthor] [bit] NOT NULL, + [DistinctDocuments] [bit] NOT NULL, + [GeneratesAlerts] [bit] NOT NULL, + [TrackerSideId] [int] NULL, + [IsCompleted] [bit] NOT NULL, + [TrackActivityCategories] [bit] NOT NULL, + [ThresholdType] [int] NOT NULL, + CONSTRAINT [PK_TrackerExecutions] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerRepositories] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerRepositories]( + [TrackerId] [int] NOT NULL, + [RepositoryId] [int] NOT NULL, + CONSTRAINT [PK_ThresholdRepositories] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC, + [RepositoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Trackers] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Trackers]( + [TrackerId] [int] IDENTITY(1,1) NOT NULL, + [TrackerName] [nvarchar](255) NOT NULL, + [TrackerDesc] [nvarchar](1000) NULL, + [IsEnabled] [bit] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [TrackerTypeId] [int] NOT NULL, + [Limit] [decimal](8, 2) NULL, + [StartDate] [datetime] NOT NULL, + [IntervalNumber] [int] NOT NULL, + [IntervalUnit] [nvarchar](50) NOT NULL, + [Notify] [nvarchar](1000) NULL, + [NotifyAppUsers] [bit] NOT NULL, + [DeliverIfNoAlert] [bit] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [NextTimeDue] [datetime] NOT NULL, + [CreatorId] [int] NOT NULL, + [OnlyPrivate] [bit] NOT NULL, + [OnlyDidNotAuthor] [bit] NOT NULL, + [DistinctDocuments] [bit] NOT NULL, + [ModifierId] [int] NOT NULL, + [GeneratesAlerts] [bit] NOT NULL, + [LinkedPolicyId] [int] NULL, + [TrackActivityCategories] [bit] NOT NULL, + [ThresholdType] [int] NOT NULL, + CONSTRAINT [PK_Thresholds] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerSides] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerSides]( + [TrackerSideId] [int] IDENTITY(1,1) NOT NULL, + [TrackerId] [int] NOT NULL, + [WallSideId] [int] NULL, + [TrackerSideName] [nvarchar](250) NOT NULL, + [IsDeleted] [bit] NOT NULL, + CONSTRAINT [PK_TrackerSides] PRIMARY KEY CLUSTERED +( + [TrackerSideId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerTypes] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerTypes]( + [TrackerTypeId] [int] IDENTITY(1,1) NOT NULL, + [TrackerType] [nvarchar](255) NOT NULL, + [TrackerCategoryId] [int] NOT NULL, + [Icon] [nvarchar](255) NULL, + [Description] [ntext] NULL, + [IsVisible] [bit] NOT NULL, + CONSTRAINT [PK_TrackerTypes] PRIMARY KEY CLUSTERED +( + [TrackerTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerWatchList] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerWatchList]( + [TrackerId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [IsInclude] [bit] NOT NULL, + [TrackerSideId] [int] NOT NULL, + CONSTRAINT [PK_TrackerWatchList] PRIMARY KEY CLUSTERED +( + [TrackerSideId] ASC, + [UserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[UserActivityCounts] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[UserActivityCounts]( + [UserActivityId] [int] IDENTITY(1,1) NOT NULL, + [TrackerExecutionId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [ActivityCount] [int] NOT NULL, + CONSTRAINT [PK_UserActivityCounts] PRIMARY KEY CLUSTERED +( + [UserActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallAccessTypes] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallAccessTypes]( + [WallAccessTypeId] [int] IDENTITY(1,1) NOT NULL, + [WallAccessType] [nvarchar](50) NOT NULL, + [SelfMaintaining] [nvarchar](64) NOT NULL, + [RequireAckForAccess] [nvarchar](64) NOT NULL, + [OrderId] [int] NOT NULL, + [Icon] [nvarchar](200) NULL, + [Description] [ntext] NULL, + [SideConfig] [nvarchar](4000) NULL, + [AutoAddMatterTeams] [nvarchar](64) NOT NULL, + [RelationshipPairing] [nvarchar](64) NOT NULL, + [PolicyCategoryId] [int] NOT NULL, + [DefaultSelfMaintainingIntervalType] [nvarchar](50) NULL, + CONSTRAINT [PK_WallAccessTypes] PRIMARY KEY CLUSTERED +( + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallCustomComboValues] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallCustomComboValues]( + [Field] [nvarchar](32) NOT NULL, + [Value] [nvarchar](200) NOT NULL, + [PolicyCategoryGroupId] [int] NOT NULL, + CONSTRAINT [PK_WallCustomComboValues] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [Value] ASC, + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallCustomFieldConfig] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallCustomFieldConfig]( + [Field] [nvarchar](32) NOT NULL, + [DisplayName] [nvarchar](64) NOT NULL, + [IsRequired] [bit] NOT NULL, + [Type] [nvarchar](32) NOT NULL, + [Description] [nvarchar](100) NOT NULL, + [PolicyCategoryGroupId] [int] NOT NULL, + CONSTRAINT [PK_WallCustomFieldConfig] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallExceptions] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallExceptions]( + [WallId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [CreatorId] [int] NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_WallExceptions] PRIMARY KEY CLUSTERED +( + [WallId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallRoles] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallRoles]( + [WallRoleId] [int] IDENTITY(1,1) NOT NULL, + [WallRoleName] [nvarchar](100) NOT NULL, + [WallRoleXML] [ntext] NULL, + CONSTRAINT [PK_WallRoles] PRIMARY KEY CLUSTERED +( + [WallRoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[Walls] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Walls]( + [WallId] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](250) NULL, + [WallAccessTypeId] [int] NOT NULL, + [Notes] [ntext] NULL, + [CreatorId] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [IsEnabled] [bit] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [ExpirationDate] [datetime] NULL, + [IsSelfMaintaining] [bit] NOT NULL, + [IsRequireAcknowledgement] [bit] NOT NULL, + [CustomField1] [nvarchar](200) NULL, + [CustomField2] [nvarchar](200) NULL, + [CustomField3] [nvarchar](200) NULL, + [CustomField4] [nvarchar](200) NULL, + [CustomField5] [nvarchar](200) NULL, + [CustomField6] [nvarchar](200) NULL, + [CustomField7] [nvarchar](200) NULL, + [CustomField8] [nvarchar](200) NULL, + [CustomField9] [nvarchar](200) NULL, + [CustomField10] [nvarchar](200) NULL, + [CustomDate1] [datetime] NULL, + [CustomDate2] [datetime] NULL, + [CustomDate3] [datetime] NULL, + [CustomDate4] [datetime] NULL, + [CustomDate5] [datetime] NULL, + [SelfMaintainingPeriod] [int] NULL, + [SelfMaintainingPeriodUnit] [nvarchar](32) NULL, + [SelfMaintainingMinHours] [int] NULL, + [EffectiveDate] [datetime] NULL, + [ModifierId] [int] NULL, + [SecurityStatus] [nvarchar](32) NULL, + [SelfMaintainingPeriodStart] [datetime] NULL, + [SelfMaintainingPeriodEnd] [datetime] NULL, + [SecurityStartDate] [datetime] NULL, + [SecurityEndDate] [datetime] NULL, + [IsRelationshipPaired] [bit] NOT NULL, + [ExtLegalHoldID] [varchar](20) NULL, + [FoundationalGroupId] [nvarchar](20) NULL, + CONSTRAINT [PK_Walls] PRIMARY KEY CLUSTERED +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallSecurityStatus] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallSecurityStatus]( + [WallSecurityStatusId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [ExtensionType] [nvarchar](64) NOT NULL, + [LibraryName] [nvarchar](255) NOT NULL, + [EntityId] [int] NOT NULL, + [Status] [nvarchar](32) NOT NULL, + [SecuredObjectCount] [int] NOT NULL, + [TotalObjectCount] [int] NOT NULL, + [Errors] [ntext] NULL, + [LastRecalculationDate] [datetime] NULL, + CONSTRAINT [PK_WallSecurityStatus] PRIMARY KEY CLUSTERED +( + [WallId] ASC, + [ExtensionType] ASC, + [LibraryName] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallSideEntities] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallSideEntities]( + [WallSideId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [WallId] [int] NOT NULL, + [DateAdded] [datetime] NULL, + [WasAddedBySelfMaintaining] [bit] NULL, + [WallRoleId] [int] NULL, + CONSTRAINT [PK_WallSideEntities] PRIMARY KEY CLUSTERED +( + [WallSideId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallSides] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallSides]( + [WallSideId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [WallSideName] [nvarchar](250) NOT NULL, + CONSTRAINT [PK_WallSides] PRIMARY KEY CLUSTERED +( + [WallSideId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Widget] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Widget]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](50) NOT NULL, + [Description] [nvarchar](250) NULL, + [Url] [nvarchar](2083) NOT NULL, + [OrderNumber] [int] NOT NULL, + [Editable] [bit] NOT NULL, + [SupportRedirection] [bit] NOT NULL, + CONSTRAINT [PK_Widget] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WidgetInstance] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WidgetInstance]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [WidgetZoneId] [int] NOT NULL, + [WidgetId] [int] NOT NULL, + [OrderNumber] [int] NOT NULL, + [Expanded] [bit] NOT NULL, + [Maximized] [bit] NOT NULL, + [Resized] [bit] NOT NULL, + [Width] [int] NOT NULL, + [Height] [int] NOT NULL, + [Title] [nvarchar](250) NOT NULL, + [WidgetProperties] [nvarchar](4000) NOT NULL, + CONSTRAINT [PK_WidgetZoneWidgets] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WidgetZone] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WidgetZone]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [WidgetZoneTypeId] [int] NOT NULL, + [UserId] [int] NOT NULL, + [OrderNumber] [int] NOT NULL, + [Title] [nvarchar](250) NULL, + CONSTRAINT [PK_WidgetZone] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WidgetZoneType] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WidgetZoneType]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [WidgetZoneType] [nvarchar](50) NOT NULL, + [WidgetZoneTypeDescription] [nvarchar](250) NULL, + CONSTRAINT [PK_WidgetZoneType] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: View [dbo].[ConfigRestricted] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + + CREATE VIEW [dbo].[ConfigRestricted] AS + SELECT ConfigId, ConfigVariable, ConfigValue1, ConfigValue2, Category, IsVisible + FROM [Config] + WHERE (ConfigVariable NOT LIKE '%Password') + AND (ConfigVariable NOT LIKE '%Username') + AND (ConfigVariable NOT LIKE '%Server') + AND (ConfigVariable NOT LIKE '%Name') + AND (ConfigVariable NOT LIKE '%Domain') + AND (ConfigVariable NOT LIKE '%Url') + AND (ConfigVariable NOT LIKE '%LibraryXML') + AND (ConfigVariable NOT LIKE '%LicenseKey') + AND (ConfigVariable NOT LIKE '%ConnectionString') + AND (ConfigVariable NOT LIKE '%PowerUserGroupsXML') + AND (ConfigVariable NOT LIKE '%RootDirectoryXML') + AND (ConfigVariable NOT LIKE '%ConnectionString') + AND (ConfigVariable NOT LIKE 'Mail::SMTPHost') + AND (ConfigVariable NOT LIKE '%PublicGroupDN') + AND (ConfigVariable NOT LIKE '%AdminUsersXML') + AND (ConfigVariable NOT LIKE 'MessageBus::ReceiverXML') + AND (ConfigVariable NOT LIKE '%ApiKey') + AND (ConfigVariable NOT LIKE '%AuthToken') +GO + +/****** Object: Index [IX_TrackerAlertDetails_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerAlertDetails_1] ON [dbo].[AlertDetails] +( + [AlertId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_CustomFields_FieldId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_CustomFields_FieldId] ON [dbo].[AlertDetailsCustomFields] +( + [FieldId] ASC, + [RepositoryTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_CustomFields_FieldName] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_CustomFields_FieldName] ON [dbo].[AlertDetailsCustomFields] +( + [FieldName] ASC, + [RepositoryTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerAlerts_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerAlerts_1] ON [dbo].[Alerts] +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_AttorneyAcknowledgments_WallSideId_isAcknowledged_isArchived] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_AttorneyAcknowledgments_WallSideId_isAcknowledged_isArchived] ON [dbo].[AttorneyAcknowledgments] +( + [WallSideId] ASC, + [isAcknowledged] ASC, + [isArchived] ASC +) +INCLUDE ( [EntityId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Config_ConfigVariable] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_Config_ConfigVariable] ON [dbo].[Config] +( + [ConfigVariable] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_1] ON [dbo].[Entities] +( + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_2] ON [dbo].[Entities] +( + [EntityRemoteSystemId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_3] ON [dbo].[Entities] +( + [ParentRemoteSystemId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_4] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_4] ON [dbo].[Entities] +( + [IsEnabledForSearch] ASC, + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_5] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_5] ON [dbo].[Entities] +( + [MatterTeamEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_6] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_6] ON [dbo].[Entities] +( + [WindowsNetworkLogon] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Entities_7] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_7] ON [dbo].[Entities] +( + [Modified] DESC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Entities_EntityDisplayId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Entities_EntityDisplayId] ON [dbo].[Entities] +( + [EntityDisplayId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_EntityCustomFieldConfig_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_EntityCustomFieldConfig_1] ON [dbo].[EntityCustomFieldConfig] +( + [EntityTypeId] ASC, + [DisplayName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_EntityKeyMap_ParentEntityId_IsActive] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_EntityKeyMap_ParentEntityId_IsActive] ON [dbo].[EntityKeyMap] +( + [ParentEntityId] ASC, + [IsActive] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ErrorLog_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ErrorLog_1] ON [dbo].[ErrorLog] +( + [ServiceType] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ErrorLog_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ErrorLog_2] ON [dbo].[ErrorLog] +( + [LogLevel] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ErrorLog_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ErrorLog_3] ON [dbo].[ErrorLog] +( + [Created] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ExtensionQueryResults_RequestId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ExtensionQueryResults_RequestId] ON [dbo].[ExtensionQueryResults] +( + [RequestId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ExtensionServiceJobs_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ExtensionServiceJobs_1] ON [dbo].[ExtensionServiceJobs] +( + [ExtensionServiceName] ASC, + [ExtensionType] ASC, + [LibraryName] ASC, + [FinalStatus] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [ExternalUsersAccessHistory_SearchFields] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [ExternalUsersAccessHistory_SearchFields] ON [dbo].[ExternalUsersAccessHistory] +( + [MatterEntityId] ASC, + [ExternalUserEntityId] ASC, + [ActivityType] ASC, + [ActivityDate] ASC +) +INCLUDE ( [AccessHistoryId], + [ActivityReason]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_InsidersReports_MatterEntityID] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_InsidersReports_MatterEntityID] ON [dbo].[InsidersReports] +( + [MatterEntityID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Log_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Log_1] ON [dbo].[Log] +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Log_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Log_2] ON [dbo].[Log] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Log_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Log_3] ON [dbo].[Log] +( + [LogMessageType] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamHistories] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamHistories] ON [dbo].[MatterTeamHistories] +( + [MatterEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamHistories_UserEntityId_IsActive_MatterEntityId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamHistories_UserEntityId_IsActive_MatterEntityId] ON [dbo].[MatterTeamHistories] +( + [UserEntityId] ASC, + [IsActive] ASC, + [MatterEntityId] ASC +) +INCLUDE ( [MatterTeamHistoryId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamSubscriptionRequests_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamSubscriptionRequests_1] ON [dbo].[MatterTeamSubscriptionRequests] +( + [MatterTeamId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamSubscriptionRequests_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamSubscriptionRequests_2] ON [dbo].[MatterTeamSubscriptionRequests] +( + [UserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_MatterTeamSubscriptionRequests_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_MatterTeamSubscriptionRequests_3] ON [dbo].[MatterTeamSubscriptionRequests] +( + [AdminEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Notifications] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Notifications] ON [dbo].[Notifications] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ObjectReleaseExceptions_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_1] ON [dbo].[ObjectReleaseExceptions] +( + [ExtensionType] ASC, + [LibraryName] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ObjectReleaseExceptions_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_2] ON [dbo].[ObjectReleaseExceptions] +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ObjectReleaseExceptions_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_3] ON [dbo].[ObjectReleaseExceptions] +( + [ExpirationDate] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_ObjectReleaseExceptions_4] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ObjectReleaseExceptions_4] ON [dbo].[ObjectReleaseExceptions] +( + [ObjectId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [PermanentInsidersAccessHistory_SearchFields] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [PermanentInsidersAccessHistory_SearchFields] ON [dbo].[PermanentInsidersAccessHistory] +( + [UserEntityId] ASC, + [ActivityType] ASC, + [ActivityDate] ASC +) +INCLUDE ( [AccessHistoryId], + [ActivityReason]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportFields_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportFields_1] ON [dbo].[ReportFields] +( + [ReportTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Reports] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Reports] ON [dbo].[Reports] +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportSchedules_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportSchedules_1] ON [dbo].[ReportSchedules] +( + [ReportID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportSchedules_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportSchedules_3] ON [dbo].[ReportSchedules] +( + [IsEnabled] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ReportSchedules_4] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ReportSchedules_4] ON [dbo].[ReportSchedules] +( + [NextTimeDue] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_SummaryDetails_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_SummaryDetails_1] ON [dbo].[SummaryDetails] +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerClientsAndMatters_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerClientsAndMatters_1] ON [dbo].[TrackerClientsAndMatters] +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerExecutionClientsAndMatters_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerExecutionClientsAndMatters_1] ON [dbo].[TrackerExecutionClientsAndMatters] +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_TrackerExecutions_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_TrackerExecutions_1] ON [dbo].[TrackerExecutions] +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Thresholds_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Thresholds_1] ON [dbo].[Trackers] +( + [Modified] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Thresholds_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Thresholds_2] ON [dbo].[Trackers] +( + [IsDeleted] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Thresholds_3] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Thresholds_3] ON [dbo].[Trackers] +( + [IsEnabled] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_ThresholdWatchList_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_ThresholdWatchList_1] ON [dbo].[TrackerWatchList] +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WallCustomFieldConfig_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_WallCustomFieldConfig_1] ON [dbo].[WallCustomFieldConfig] +( + [DisplayName] ASC, + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WallRoles_Name] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallRoles_Name] ON [dbo].[WallRoles] +( + [WallRoleName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Walls_1] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Walls_1] ON [dbo].[Walls] +( + [CreatorId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_Walls_2] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_Walls_2] ON [dbo].[Walls] +( + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [UIX_Walls_FoundationalGroupId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [UIX_Walls_FoundationalGroupId] ON [dbo].[Walls] +( + [FoundationalGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WallSecurityStatus_Entity] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSecurityStatus_Entity] ON [dbo].[WallSecurityStatus] +( + [EntityId] ASC +) +INCLUDE ( [WallId], + [Status]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSecurityStatus_WallId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSecurityStatus_WallId] ON [dbo].[WallSecurityStatus] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSecurityStatus_WallSecurityStatusId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSecurityStatus_WallSecurityStatusId] ON [dbo].[WallSecurityStatus] +( + [WallSecurityStatusId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSideEntities_EntityIdsForWallId] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSideEntities_EntityIdsForWallId] ON [dbo].[WallSideEntities] +( + [WallId] ASC +) +INCLUDE ( [WallSideId], + [EntityId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSideEntities_WasAddedBySelfMaintaining] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSideEntities_WasAddedBySelfMaintaining] ON [dbo].[WallSideEntities] +( + [WasAddedBySelfMaintaining] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +/****** Object: Index [IX_WallSides] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE NONCLUSTERED INDEX [IX_WallSides] ON [dbo].[WallSides] +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_Widget_Name] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_Widget_Name] ON [dbo].[Widget] +( + [Name] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +SET ANSI_PADDING ON +GO +/****** Object: Index [IX_WidgetZone] Script Date: 2/6/2018 1:34:18 PM ******/ +CREATE UNIQUE NONCLUSTERED INDEX [IX_WidgetZone] ON [dbo].[WidgetZone] +( + [Title] ASC, + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +GO +ALTER TABLE [dbo].[AlertDetails] ADD CONSTRAINT [DF_AlertDetails_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_IsEnabled] DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_CreationDate] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD CONSTRAINT [DF_Users_ModifiedTime] DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [dbo].[ApplicationUsers] ADD DEFAULT ((0)) FOR [InsidersModuleAccess] +GO +ALTER TABLE [dbo].[Attachments] ADD CONSTRAINT [DF_Attachments_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] ADD DEFAULT ((0)) FOR [isAcknowledged] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] ADD DEFAULT ((0)) FOR [isArchived] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] ADD CONSTRAINT [DF_DynamicEntityGroupExceptions_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] ADD CONSTRAINT [DF_DynamicEntityGroupExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[Entities] ADD DEFAULT ((1)) FOR [IsEnabledForSearch] +GO +ALTER TABLE [dbo].[Entities] ADD DEFAULT ((1)) FOR [NotificationRoleId] +GO +ALTER TABLE [dbo].[EntitiesMatterTeamFields] ADD DEFAULT ((0)) FOR [IsRelationshipPaired] +GO +ALTER TABLE [dbo].[EntitiesUserFields] ADD DEFAULT ((0)) FOR [IsExceptedFromActiveDirectoryGroups] +GO +ALTER TABLE [dbo].[EntitiesUserFields] ADD DEFAULT ((0)) FOR [IsExceptedFromJoiningMatterTeam] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT ('Custom Field') FOR [Description] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsIncludedInNotifications] DEFAULT ((0)) FOR [IsIncludedInNotifications] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT ((1)) FOR [IsIncludedInEntityTooltip] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsMultiValued] DEFAULT ((0)) FOR [IsMultiValued] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsIncludedInExtendedValidation] DEFAULT ((0)) FOR [IsIncludedInExtendedValidation] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT ((1)) FOR [IsIncludedInGeneralInformation] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD CONSTRAINT [DF_EntityCustomFieldConfig_IsConfidential] DEFAULT ((0)) FOR [IsConfidential] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] ADD DEFAULT (NULL) FOR [DateTimeFormat] +GO +ALTER TABLE [dbo].[EntityKeyMap] ADD CONSTRAINT [DF_EntityKeyMap_IsActive] DEFAULT ((1)) FOR [IsActive] +GO +ALTER TABLE [dbo].[EntityKeyMap] ADD CONSTRAINT [DF_EntityKeyMap_IsMTHistoryConflict] DEFAULT ((0)) FOR [IsMTHistoryConflict] +GO +ALTER TABLE [dbo].[EntityRelationshipTypes] ADD CONSTRAINT [DF_EntityRelationshipTypes_IsDirectRelationshipValidated] DEFAULT ((0)) FOR [IsDirectRelationshipValidated] +GO +ALTER TABLE [dbo].[EntityRelationshipTypes] ADD CONSTRAINT [DF_EntityRelationshipTypes_IsSharedRelationshipValidated] DEFAULT ((0)) FOR [IsSharedRelationshipValidated] +GO +ALTER TABLE [dbo].[ErrorLog] ADD DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[ExtensionServiceLocks] ADD CONSTRAINT [DF_LockTime_GETUTCDATE] DEFAULT (getutcdate()) FOR [LockTime] +GO +ALTER TABLE [dbo].[FileShareADGroupStatuses] ADD DEFAULT (getutcdate()) FOR [LastAccessTime] +GO +ALTER TABLE [dbo].[GlobalExceptions] ADD CONSTRAINT [DF_GlobalExceptions_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[GlobalExceptions] ADD CONSTRAINT [DF_GlobalExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[GroupEntityLog] ADD CONSTRAINT [DF_GroupEntityLog] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[InsidersReportFields] ADD CONSTRAINT [DF_InsidersReportFields_IsHeaderField] DEFAULT ((0)) FOR [IsHeaderField] +GO +ALTER TABLE [dbo].[InsidersReportFields] ADD DEFAULT (NULL) FOR [DateTimeFormat] +GO +ALTER TABLE [dbo].[InsidersReportFields] ADD CONSTRAINT [DF_InsidersReportFields_IsPermanentInsiders] DEFAULT ((0)) FOR [IsPermanentInsiders] +GO +ALTER TABLE [dbo].[Log] ADD CONSTRAINT [DF_Log_LogMessageCreated] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[MatterAccessHistory] ADD CONSTRAINT [DF_MatterAccessHistory_WasAddedBySelfMaintaining] DEFAULT ((0)) FOR [WasAddedBySelfMaintaining] +GO +ALTER TABLE [dbo].[MatterTeamExceptions] ADD CONSTRAINT [DF_MatterTeamExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[MatterTeamHistories] ADD CONSTRAINT [DF_MatterTeamHistories_ActivityDate] DEFAULT (getdate()) FOR [ActivityDate] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsAdmin] DEFAULT ((0)) FOR [IsAdmin] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsDelegate] DEFAULT ((0)) FOR [IsDelegate] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_WallRoleId] DEFAULT ((1)) FOR [WallRoleId] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsExceptedFromInactiveStatus] DEFAULT ((0)) FOR [IsExceptedFromInactiveStatus] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_IsRestrictedToGlobalAdmins] DEFAULT ((0)) FOR [IsRestrictedToGlobalAdmins] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD CONSTRAINT [DF_MatterTeamRole_CanRemoveUsers] DEFAULT ((0)) FOR [CanRemoveUsers] +GO +ALTER TABLE [dbo].[MatterTeamRole] ADD DEFAULT ((0)) FOR [CanSubscribeUsers] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_ForceExpiration] DEFAULT ((0)) FOR [ForceNotification] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_IncludeAcknowledgments] DEFAULT ((0)) FOR [IncludeAcknowledgments] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_NotificationType] DEFAULT ('Event-Driven') FOR [NotificationType] +GO +ALTER TABLE [dbo].[Notifications] ADD DEFAULT ('Wall') FOR [Scope] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_NotificationName] DEFAULT ('') FOR [NotificationName] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_TriggerEvents] DEFAULT ((0)) FOR [TriggerEvents] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[Notifications] ADD CONSTRAINT [DF_Notifications_IsDigest] DEFAULT ((0)) FOR [IsDigest] +GO +ALTER TABLE [dbo].[ObjectTemplate] ADD DEFAULT ((0)) FOR [SeparatorType] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_IsQueryable] DEFAULT ((1)) FOR [IsQueryable] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_IsSearchable] DEFAULT ((1)) FOR [IsSearchable] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_IsDefault] DEFAULT ((0)) FOR [IsDefault] +GO +ALTER TABLE [dbo].[ReportFields] ADD CONSTRAINT [DF_ReportFields_OrderId] DEFAULT ((0)) FOR [OrderId] +GO +ALTER TABLE [dbo].[Reports] ADD CONSTRAINT [DF_Reports_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[Reports] ADD CONSTRAINT [DF_Reports_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[ReportSchedules] ADD CONSTRAINT [DF_ReportSchedules_RecipientAppUsers] DEFAULT ((0)) FOR [RecipientAppUsers] +GO +ALTER TABLE [dbo].[ReportSchedules] ADD CONSTRAINT [DF_ReportSchedules_SkipIfNoData] DEFAULT ((0)) FOR [SkipIfNoData] +GO +ALTER TABLE [dbo].[ReportSchedules] ADD CONSTRAINT [DF_ReportSchedules_IsEnabled] DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((1)) FOR [TrackerTypeId] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD CONSTRAINT [DF_TrackerExecutions_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [OnlyPrivate] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [OnlyDidNotAuthor] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [DistinctDocuments] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [IsCompleted] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((0)) FOR [TrackActivityCategories] +GO +ALTER TABLE [dbo].[TrackerExecutions] ADD DEFAULT ((1)) FOR [ThresholdType] +GO +ALTER TABLE [dbo].[Trackers] ADD CONSTRAINT [DF_Thresholds_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[Trackers] ADD CONSTRAINT [DF_Thresholds_Modified] DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((0)) FOR [OnlyPrivate] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((0)) FOR [OnlyDidNotAuthor] +GO +ALTER TABLE [dbo].[Trackers] ADD CONSTRAINT [DF_Trackers_DistinctDocuments] DEFAULT ((1)) FOR [DistinctDocuments] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((0)) FOR [TrackActivityCategories] +GO +ALTER TABLE [dbo].[Trackers] ADD DEFAULT ((1)) FOR [ThresholdType] +GO +ALTER TABLE [dbo].[TrackerSides] ADD CONSTRAINT [DF_TrackerSides_TrackerSideName] DEFAULT ('Watch List') FOR [TrackerSideName] +GO +ALTER TABLE [dbo].[TrackerSides] ADD CONSTRAINT [DF_TrackerSides_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[TrackerTypes] ADD DEFAULT ((1)) FOR [TrackerCategoryId] +GO +ALTER TABLE [dbo].[TrackerTypes] ADD DEFAULT ((1)) FOR [IsVisible] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_SelfMaintaining] DEFAULT ('Off') FOR [SelfMaintaining] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_RequireAckForAccess] DEFAULT ('Off') FOR [RequireAckForAccess] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_OrderId] DEFAULT ((0)) FOR [OrderId] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_AutoAddMatterTeams] DEFAULT ('Off') FOR [AutoAddMatterTeams] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessTypes_RelationshipPairing] DEFAULT ('Off') FOR [RelationshipPairing] +GO +ALTER TABLE [dbo].[WallAccessTypes] ADD CONSTRAINT [DF_WallAccessType_DefaultSelfMaintainingIntervalType] DEFAULT ('Fixed Lookback And Ongoing') FOR [DefaultSelfMaintainingIntervalType] +GO +ALTER TABLE [dbo].[WallCustomFieldConfig] ADD DEFAULT ('Custom Field') FOR [Description] +GO +ALTER TABLE [dbo].[WallExceptions] ADD CONSTRAINT [DF_WallExceptions_CreatorId] DEFAULT ((1)) FOR [CreatorId] +GO +ALTER TABLE [dbo].[WallExceptions] ADD CONSTRAINT [DF_WallExceptions_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_WallAccessTypeId] DEFAULT ((1)) FOR [WallAccessTypeId] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_Created] DEFAULT (getdate()) FOR [Created] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_Modified] DEFAULT (getdate()) FOR [Modified] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_IsEnabled] DEFAULT ((1)) FOR [IsEnabled] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DF_Walls_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[Walls] ADD DEFAULT ((0)) FOR [IsSelfMaintaining] +GO +ALTER TABLE [dbo].[Walls] ADD CONSTRAINT [DEF_Walls_RequireAcknowledgement] DEFAULT ((0)) FOR [IsRequireAcknowledgement] +GO +ALTER TABLE [dbo].[Walls] ADD DEFAULT ((0)) FOR [IsRelationshipPaired] +GO +ALTER TABLE [dbo].[WallSideEntities] ADD CONSTRAINT [DF_WallSideEntities_DateAdded] DEFAULT (getdate()) FOR [DateAdded] +GO +ALTER TABLE [dbo].[WallSideEntities] ADD CONSTRAINT [DF_WallSideEntities_WasAddedBySelfMaintaining] DEFAULT ((0)) FOR [WasAddedBySelfMaintaining] +GO +ALTER TABLE [dbo].[WallSides] ADD CONSTRAINT [DF_WallSides_IsDeleted] DEFAULT ((0)) FOR [IsDeleted] +GO +ALTER TABLE [dbo].[WallSides] ADD CONSTRAINT [DF_WallSides_WallSideName] DEFAULT ('Side') FOR [WallSideName] +GO +ALTER TABLE [dbo].[Widget] ADD CONSTRAINT [DF_Widget_Editable] DEFAULT ((0)) FOR [Editable] +GO +ALTER TABLE [dbo].[Widget] ADD CONSTRAINT [DF_Widget_SupportRedirection] DEFAULT ((1)) FOR [SupportRedirection] +GO +ALTER TABLE [dbo].[WidgetInstance] ADD CONSTRAINT [DF_WidgetZoneWidgets_Expanded] DEFAULT ((1)) FOR [Expanded] +GO +ALTER TABLE [dbo].[WidgetInstance] ADD CONSTRAINT [DF_WidgetZoneWidgets_Maximized] DEFAULT ((1)) FOR [Maximized] +GO +ALTER TABLE [dbo].[WidgetInstance] ADD CONSTRAINT [DF_WidgetZoneWidgets_Resized] DEFAULT ((0)) FOR [Resized] +GO +ALTER TABLE [dbo].[AccessHistory] WITH CHECK ADD CONSTRAINT [FK_AccessHistory_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[AccessHistory] CHECK CONSTRAINT [FK_AccessHistory_Entities] +GO +ALTER TABLE [dbo].[AccessHistory] WITH CHECK ADD CONSTRAINT [FK_AccessHistory_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[AccessHistory] CHECK CONSTRAINT [FK_AccessHistory_Walls] +GO +ALTER TABLE [dbo].[AccessHistory] WITH CHECK ADD CONSTRAINT [FK_AccessHistory_WallSides] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[AccessHistory] CHECK CONSTRAINT [FK_AccessHistory_WallSides] +GO +ALTER TABLE [dbo].[Activities] WITH CHECK ADD CONSTRAINT [FK_Activities_ActivityCategories] FOREIGN KEY([ActivityCategoryId]) +REFERENCES [dbo].[ActivityCategories] ([ActivityCategoryId]) +GO +ALTER TABLE [dbo].[Activities] CHECK CONSTRAINT [FK_Activities_ActivityCategories] +GO +ALTER TABLE [dbo].[Activities] WITH CHECK ADD CONSTRAINT [FK_Activities_RepositoryTypes] FOREIGN KEY([RepositoryTypeId]) +REFERENCES [dbo].[RepositoryTypes] ([RepositoryTypeId]) +GO +ALTER TABLE [dbo].[Activities] CHECK CONSTRAINT [FK_Activities_RepositoryTypes] +GO +ALTER TABLE [dbo].[AlertDetails] WITH CHECK ADD CONSTRAINT [FK_AlertDetails_Alerts] FOREIGN KEY([AlertId]) +REFERENCES [dbo].[Alerts] ([AlertId]) +GO +ALTER TABLE [dbo].[AlertDetails] CHECK CONSTRAINT [FK_AlertDetails_Alerts] +GO +ALTER TABLE [dbo].[AlertDetailsCustomFields] WITH CHECK ADD CONSTRAINT [FK_AlertDetailsCustomFields_RepositoryTypes] FOREIGN KEY([RepositoryTypeId]) +REFERENCES [dbo].[RepositoryTypes] ([RepositoryTypeId]) +GO +ALTER TABLE [dbo].[AlertDetailsCustomFields] CHECK CONSTRAINT [FK_AlertDetailsCustomFields_RepositoryTypes] +GO +ALTER TABLE [dbo].[Alerts] WITH NOCHECK ADD CONSTRAINT [FK_Alerts_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[Alerts] CHECK CONSTRAINT [FK_Alerts_Entities] +GO +ALTER TABLE [dbo].[Alerts] WITH NOCHECK ADD CONSTRAINT [FK_Alerts_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[Alerts] CHECK CONSTRAINT [FK_Alerts_TrackerExecutions] +GO +ALTER TABLE [dbo].[ApplicationUsers] WITH CHECK ADD CONSTRAINT [FK_ApplicationUsers_ApplicationRolesAT] FOREIGN KEY([ATRoleId]) +REFERENCES [dbo].[ApplicationRolesAT] ([RoleId]) +GO +ALTER TABLE [dbo].[ApplicationUsers] CHECK CONSTRAINT [FK_ApplicationUsers_ApplicationRolesAT] +GO +ALTER TABLE [dbo].[ApplicationUsers] WITH CHECK ADD CONSTRAINT [FK_ApplicationUsers_ApplicationRolesMTM] FOREIGN KEY([MTMRoleId]) +REFERENCES [dbo].[ApplicationRolesMTM] ([RoleId]) +GO +ALTER TABLE [dbo].[ApplicationUsers] CHECK CONSTRAINT [FK_ApplicationUsers_ApplicationRolesMTM] +GO +ALTER TABLE [dbo].[ApplicationUsers] WITH CHECK ADD CONSTRAINT [FK_ApplicationUsers_ApplicationRolesWB] FOREIGN KEY([WBRoleId]) +REFERENCES [dbo].[ApplicationRolesWB] ([RoleId]) +GO +ALTER TABLE [dbo].[ApplicationUsers] CHECK CONSTRAINT [FK_ApplicationUsers_ApplicationRolesWB] +GO +ALTER TABLE [dbo].[Attachments] WITH CHECK ADD CONSTRAINT [FK_Attachments_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Attachments] CHECK CONSTRAINT [FK_Attachments_ApplicationUsers] +GO +ALTER TABLE [dbo].[Attachments] WITH CHECK ADD CONSTRAINT [FK_Attachments_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[Attachments] CHECK CONSTRAINT [FK_Attachments_Walls] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] WITH CHECK ADD CONSTRAINT [FK_AttorneyAcknowledgments_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] CHECK CONSTRAINT [FK_AttorneyAcknowledgments_Entities] +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] WITH CHECK ADD CONSTRAINT [FK_AttorneyAcknowledgments_WallSides] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[AttorneyAcknowledgments] CHECK CONSTRAINT [FK_AttorneyAcknowledgments_WallSides] +GO +ALTER TABLE [dbo].[DefaultNotifications] WITH CHECK ADD CONSTRAINT [FK_DefaultNotifications_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[DefaultNotifications] CHECK CONSTRAINT [FK_DefaultNotifications_Notifications] +GO +ALTER TABLE [dbo].[DefaultNotifications] WITH CHECK ADD CONSTRAINT [FK_DefaultNotifications_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[DefaultNotifications] CHECK CONSTRAINT [FK_DefaultNotifications_WallAccessTypes] +GO +ALTER TABLE [dbo].[DefaultTrackers] WITH CHECK ADD CONSTRAINT [FK_DefaultTrackers_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[DefaultTrackers] CHECK CONSTRAINT [FK_DefaultTrackers_Trackers] +GO +ALTER TABLE [dbo].[DefaultTrackers] WITH CHECK ADD CONSTRAINT [FK_DefaultTrackers_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[DefaultTrackers] CHECK CONSTRAINT [FK_DefaultTrackers_WallAccessTypes] +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_DigestNotificationAttachments_Attachments] FOREIGN KEY([NotificationAttachmentId]) +REFERENCES [dbo].[Attachments] ([AttachmentId]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] CHECK CONSTRAINT [FK_DigestNotificationAttachments_Attachments] +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_DigestNotificationAttachments_DigestNotifications] FOREIGN KEY([DigestNotificationId]) +REFERENCES [dbo].[DigestNotifications] ([DigestNotificationId]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[DigestNotificationAttachments] CHECK CONSTRAINT [FK_DigestNotificationAttachments_DigestNotifications] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [FK_DigestNotifications_DigestNotificationContent] FOREIGN KEY([DigestNotificationContentId]) +REFERENCES [dbo].[DigestNotificationContent] ([DigestNotificationContentId]) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [FK_DigestNotifications_DigestNotificationContent] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [FK_DigestNotifications_NotificationHistory] FOREIGN KEY([NotificationHistoryId]) +REFERENCES [dbo].[NotificationHistory] ([NotificationHistoryId]) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [FK_DigestNotifications_NotificationHistory] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [FK_DigestNotifications_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [FK_DigestNotifications_Notifications] +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupDefinitions_ApplicationUsers] FOREIGN KEY([CreatedBy]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] CHECK CONSTRAINT [FK_DynamicEntityGroupDefinitions_ApplicationUsers] +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] WITH NOCHECK ADD CONSTRAINT [FK_DynamicEntityGroupDefinitions_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupDefinitions] CHECK CONSTRAINT [FK_DynamicEntityGroupDefinitions_Entities] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupExceptions_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] CHECK CONSTRAINT [FK_DynamicEntityGroupExceptions_ApplicationUsers] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupExceptions_DegEntities] FOREIGN KEY([DynamicGroupEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] CHECK CONSTRAINT [FK_DynamicEntityGroupExceptions_DegEntities] +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] WITH CHECK ADD CONSTRAINT [FK_DynamicEntityGroupExceptions_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[DynamicEntityGroupExceptions] CHECK CONSTRAINT [FK_DynamicEntityGroupExceptions_Entities] +GO +ALTER TABLE [dbo].[Entities] WITH CHECK ADD CONSTRAINT [FK_Entities_Entities] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[Entities] CHECK CONSTRAINT [FK_Entities_Entities] +GO +ALTER TABLE [dbo].[Entities] WITH CHECK ADD CONSTRAINT [FK_Entities_EntityTypes_1] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[Entities] CHECK CONSTRAINT [FK_Entities_EntityTypes_1] +GO +ALTER TABLE [dbo].[Entities] WITH CHECK ADD CONSTRAINT [FK_Entities_EntityTypes_2] FOREIGN KEY([ParentTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[Entities] CHECK CONSTRAINT [FK_Entities_EntityTypes_2] +GO +ALTER TABLE [dbo].[EntitiesMatterTeamFields] WITH CHECK ADD CONSTRAINT [FK_EntitiesMatterTeamFields_Entities] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntitiesMatterTeamFields] CHECK CONSTRAINT [FK_EntitiesMatterTeamFields_Entities] +GO +ALTER TABLE [dbo].[EntitiesUserFields] WITH CHECK ADD CONSTRAINT [FK_EntitiesUserFields_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntitiesUserFields] CHECK CONSTRAINT [FK_EntitiesUserFields_Entities] +GO +ALTER TABLE [dbo].[EntityCustomComboValues] WITH NOCHECK ADD CONSTRAINT [FK_EntityCustomComboValues_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[EntityCustomComboValues] CHECK CONSTRAINT [FK_EntityCustomComboValues_EntityTypes] +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] WITH NOCHECK ADD CONSTRAINT [FK_EntityCustomFieldConfig_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[EntityCustomFieldConfig] CHECK CONSTRAINT [FK_EntityCustomFieldConfig_EntityTypes] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_Entities_1] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_Entities_1] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_Entities_2] FOREIGN KEY([ParentEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_Entities_2] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_MatterTeamRole1] FOREIGN KEY([RoleId]) +REFERENCES [dbo].[MatterTeamRole] ([RoleId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_MatterTeamRole1] +GO +ALTER TABLE [dbo].[EntityKeyMap] WITH CHECK ADD CONSTRAINT [FK_EntityKeyMap_MatterTeamRole2] FOREIGN KEY([DemotionRoleId]) +REFERENCES [dbo].[MatterTeamRole] ([RoleId]) +GO +ALTER TABLE [dbo].[EntityKeyMap] CHECK CONSTRAINT [FK_EntityKeyMap_MatterTeamRole2] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [FK_EntityToEntityRelationships_Entities1] FOREIGN KEY([PrimaryEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [FK_EntityToEntityRelationships_Entities1] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [FK_EntityToEntityRelationships_Entities2] FOREIGN KEY([SubordinateEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [FK_EntityToEntityRelationships_Entities2] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [FK_EntityToEntityRelationships_EntityRelationshipTypes] FOREIGN KEY([EntityRelationshipTypeId]) +REFERENCES [dbo].[EntityRelationshipTypes] ([EntityRelationshipTypeId]) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [FK_EntityToEntityRelationships_EntityRelationshipTypes] +GO +ALTER TABLE [dbo].[ExternalUserFields] WITH CHECK ADD CONSTRAINT [FK_ExternalUserFields_ApplicationUsers] FOREIGN KEY([CreatedBy]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[ExternalUserFields] CHECK CONSTRAINT [FK_ExternalUserFields_ApplicationUsers] +GO +ALTER TABLE [dbo].[ExternalUserFields] WITH CHECK ADD CONSTRAINT [FK_ExternalUserFields_Entities] FOREIGN KEY([ExternalUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[ExternalUserFields] CHECK CONSTRAINT [FK_ExternalUserFields_Entities] +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] WITH CHECK ADD CONSTRAINT [FK_ExternalUsersAccessHistory_MatterEntities] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] CHECK CONSTRAINT [FK_ExternalUsersAccessHistory_MatterEntities] +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] WITH CHECK ADD CONSTRAINT [FK_ExternalUsersAccessHistory_UserEntities] FOREIGN KEY([ExternalUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ExternalUsersAccessHistory] CHECK CONSTRAINT [FK_ExternalUsersAccessHistory_UserEntities] +GO +ALTER TABLE [dbo].[GlobalExceptions] WITH NOCHECK ADD CONSTRAINT [FK_GlobalExceptions_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[GlobalExceptions] CHECK CONSTRAINT [FK_GlobalExceptions_ApplicationUsers] +GO +ALTER TABLE [dbo].[GroupEntityLog] WITH CHECK ADD CONSTRAINT [FK_GroupEntityLog_Entities] FOREIGN KEY([GroupEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[GroupEntityLog] CHECK CONSTRAINT [FK_GroupEntityLog_Entities] +GO +ALTER TABLE [dbo].[HiddenMatterTeams] WITH CHECK ADD CONSTRAINT [FK_HiddenMatterTeams_Entities] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[HiddenMatterTeams] CHECK CONSTRAINT [FK_HiddenMatterTeams_Entities] +GO +ALTER TABLE [dbo].[InsidersReportFields] WITH CHECK ADD CONSTRAINT [FK_InsidersReportFields_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[InsidersReportFields] CHECK CONSTRAINT [FK_InsidersReportFields_EntityTypes] +GO +ALTER TABLE [dbo].[InsidersReportLogs] WITH CHECK ADD CONSTRAINT [FK_InsidersReportLogs_ApplicationUsers] FOREIGN KEY([ApplicationUserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[InsidersReportLogs] CHECK CONSTRAINT [FK_InsidersReportLogs_ApplicationUsers] +GO +ALTER TABLE [dbo].[InsidersReportLogs] WITH CHECK ADD CONSTRAINT [FK_InsidersReportLogs_Matters] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[InsidersReportLogs] CHECK CONSTRAINT [FK_InsidersReportLogs_Matters] +GO +ALTER TABLE [dbo].[InsidersReports] WITH CHECK ADD CONSTRAINT [FK_InsidersReports_Entities] FOREIGN KEY([MatterEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[InsidersReports] CHECK CONSTRAINT [FK_InsidersReports_Entities] +GO +ALTER TABLE [dbo].[Log] WITH CHECK ADD CONSTRAINT [FK_Log_ApplicationUsers] FOREIGN KEY([UserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Log] CHECK CONSTRAINT [FK_Log_ApplicationUsers] +GO +ALTER TABLE [dbo].[MatterAccessHistory] WITH CHECK ADD CONSTRAINT [FK_MatterAccessHistory_AccessHistory] FOREIGN KEY([AccessHistoryId]) +REFERENCES [dbo].[AccessHistory] ([AccessHistoryId]) +GO +ALTER TABLE [dbo].[MatterAccessHistory] CHECK CONSTRAINT [FK_MatterAccessHistory_AccessHistory] +GO +ALTER TABLE [dbo].[MatterAccessHistory] WITH CHECK ADD CONSTRAINT [FK_MatterAccessHistory_Entities] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterAccessHistory] CHECK CONSTRAINT [FK_MatterAccessHistory_Entities] +GO +ALTER TABLE [dbo].[MatterTeamExceptions] WITH CHECK ADD CONSTRAINT [FK_MatterTeamExceptions_Entities1] FOREIGN KEY([MatterTeamEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamExceptions] CHECK CONSTRAINT [FK_MatterTeamExceptions_Entities1] +GO +ALTER TABLE [dbo].[MatterTeamExceptions] WITH CHECK ADD CONSTRAINT [FK_MatterTeamExceptions_Entities2] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamExceptions] CHECK CONSTRAINT [FK_MatterTeamExceptions_Entities2] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_MatterEntities] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_MatterEntities] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_MatterTeamHistoryActivityTypes] FOREIGN KEY([ActivityTypeId]) +REFERENCES [dbo].[MatterTeamHistoryActivityTypes] ([ActivityTypeId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_MatterTeamHistoryActivityTypes] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_MatterTeamRoles] FOREIGN KEY([RoleId]) +REFERENCES [dbo].[MatterTeamRole] ([RoleId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_MatterTeamRoles] +GO +ALTER TABLE [dbo].[MatterTeamHistories] WITH CHECK ADD CONSTRAINT [FK_MatterTeamHistories_UserEntities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamHistories] CHECK CONSTRAINT [FK_MatterTeamHistories_UserEntities] +GO +ALTER TABLE [dbo].[MatterTeamRole] WITH CHECK ADD CONSTRAINT [FK_MatterTeamRole_WallRoleId] FOREIGN KEY([WallRoleId]) +REFERENCES [dbo].[WallRoles] ([WallRoleId]) +GO +ALTER TABLE [dbo].[MatterTeamRole] CHECK CONSTRAINT [FK_MatterTeamRole_WallRoleId] +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] WITH CHECK ADD CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities1] FOREIGN KEY([MatterTeamId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] CHECK CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities1] +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] WITH CHECK ADD CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities2] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] CHECK CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities2] +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] WITH CHECK ADD CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities3] FOREIGN KEY([AdminEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[MatterTeamSubscriptionRequests] CHECK CONSTRAINT [FK_MatterTeamSubscriptionRequestsEntities3] +GO +ALTER TABLE [dbo].[NotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_NotificationAttachments_Attachments] FOREIGN KEY([AttachmentId]) +REFERENCES [dbo].[Attachments] ([AttachmentId]) +GO +ALTER TABLE [dbo].[NotificationAttachments] CHECK CONSTRAINT [FK_NotificationAttachments_Attachments] +GO +ALTER TABLE [dbo].[NotificationAttachments] WITH CHECK ADD CONSTRAINT [FK_NotificationAttachments_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[NotificationAttachments] CHECK CONSTRAINT [FK_NotificationAttachments_Notifications] +GO +ALTER TABLE [dbo].[NotificationHistory] WITH CHECK ADD CONSTRAINT [FK_NotificationHistory_AttorneyAcknowledgments] FOREIGN KEY([AcknowledgmentId]) +REFERENCES [dbo].[AttorneyAcknowledgments] ([AcknowledgmentId]) +GO +ALTER TABLE [dbo].[NotificationHistory] CHECK CONSTRAINT [FK_NotificationHistory_AttorneyAcknowledgments] +GO +ALTER TABLE [dbo].[NotificationHistory] WITH CHECK ADD CONSTRAINT [FK_NotificationHistory_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[NotificationHistory] CHECK CONSTRAINT [FK_NotificationHistory_Entities] +GO +ALTER TABLE [dbo].[NotificationHistory] WITH CHECK ADD CONSTRAINT [FK_NotificationHistorys_Notifications] FOREIGN KEY([NotificationId]) +REFERENCES [dbo].[Notifications] ([NotificationId]) +GO +ALTER TABLE [dbo].[NotificationHistory] CHECK CONSTRAINT [FK_NotificationHistorys_Notifications] +GO +ALTER TABLE [dbo].[NotificationRoles] WITH CHECK ADD CONSTRAINT [FK_NotificationRoles_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[NotificationRoles] CHECK CONSTRAINT [FK_NotificationRoles_WallAccessTypes] +GO +ALTER TABLE [dbo].[ObjectReleaseExceptions] WITH CHECK ADD CONSTRAINT [FK_ObjectReleaseExceptions_EntityId] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ObjectReleaseExceptions] CHECK CONSTRAINT [FK_ObjectReleaseExceptions_EntityId] +GO +ALTER TABLE [dbo].[ObjectTemplate] WITH CHECK ADD CONSTRAINT [FK_ObjectTemplate_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[ObjectTemplate] CHECK CONSTRAINT [FK_ObjectTemplate_ApplicationUsers] +GO +ALTER TABLE [dbo].[ObjectTemplate] WITH CHECK ADD CONSTRAINT [FK_ObjectTemplate_EntityTypes] FOREIGN KEY([EntityTypeId]) +REFERENCES [dbo].[EntityTypes] ([EntityTypeId]) +GO +ALTER TABLE [dbo].[ObjectTemplate] CHECK CONSTRAINT [FK_ObjectTemplate_EntityTypes] +GO +ALTER TABLE [dbo].[PermanentInsidersAccessHistory] WITH CHECK ADD CONSTRAINT [FK_PermanentInsidersAccessHistory_UserEntities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[PermanentInsidersAccessHistory] CHECK CONSTRAINT [FK_PermanentInsidersAccessHistory_UserEntities] +GO +ALTER TABLE [dbo].[PolicyCategories] WITH CHECK ADD CONSTRAINT [FK_PolicyCategories_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[PolicyCategories] CHECK CONSTRAINT [FK_PolicyCategories_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_UserEntityId] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Entities_UserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_AllowingWallId] FOREIGN KEY([AllowingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_AllowingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessExplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessExplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_UserEntityId] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Entities_UserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_ConflictingWallId] FOREIGN KEY([ConflictingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_ConflictingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingAccessImplicit] CHECK CONSTRAINT [FK_ReportConflictingAccessImplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_AllowedUserEntityId] FOREIGN KEY([AllowedUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_AllowedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_DeniedUserEntityId] FOREIGN KEY([DeniedUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_DeniedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_AllowingWallId] FOREIGN KEY([AllowingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_AllowingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesExplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesExplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_AllowedUserEntityId] FOREIGN KEY([ConflictingUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_AllowedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_ClientEntityID] FOREIGN KEY([ClientEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_ClientEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_DeniedUserEntityId] FOREIGN KEY([DeniedUserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_DeniedUserEntityId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_MatterEntityID] FOREIGN KEY([MatterEntityID]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Entities_MatterEntityID] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_AllowingWallId] FOREIGN KEY([ConflictingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_AllowingWallId] +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] WITH CHECK ADD CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_DenyingWallId] FOREIGN KEY([DenyingWallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ReportConflictingSharedResourcesImplicit] CHECK CONSTRAINT [FK_ReportConflictingSharedResourcesImplicit_Walls_DenyingWallId] +GO +ALTER TABLE [dbo].[ReportFields] WITH CHECK ADD CONSTRAINT [FK_ReportFields_ReportTypes] FOREIGN KEY([ReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[ReportFields] CHECK CONSTRAINT [FK_ReportFields_ReportTypes] +GO +ALTER TABLE [dbo].[Reports] WITH CHECK ADD CONSTRAINT [FK_Reports_ApplicationUsers] FOREIGN KEY([UserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Reports] CHECK CONSTRAINT [FK_Reports_ApplicationUsers] +GO +ALTER TABLE [dbo].[Reports] WITH CHECK ADD CONSTRAINT [FK_Reports_ReportTypes] FOREIGN KEY([ReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[Reports] CHECK CONSTRAINT [FK_Reports_ReportTypes] +GO +ALTER TABLE [dbo].[ReportSchedules] WITH CHECK ADD CONSTRAINT [FK_ReportFields_Reports] FOREIGN KEY([ReportID]) +REFERENCES [dbo].[Reports] ([ReportId]) +GO +ALTER TABLE [dbo].[ReportSchedules] CHECK CONSTRAINT [FK_ReportFields_Reports] +GO +ALTER TABLE [dbo].[ReportsConflictingLatestUpdateDate] WITH CHECK ADD CONSTRAINT [FK_ReportsConflictingLatestUpdateDate_ReportTypes_ReportTypeId] FOREIGN KEY([ReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[ReportsConflictingLatestUpdateDate] CHECK CONSTRAINT [FK_ReportsConflictingLatestUpdateDate_ReportTypes_ReportTypeId] +GO +ALTER TABLE [dbo].[ReportTypes] WITH CHECK ADD CONSTRAINT [FK_ParentReportTypes_ReportTypes] FOREIGN KEY([ParentReportTypeId]) +REFERENCES [dbo].[ReportTypes] ([ReportTypeId]) +GO +ALTER TABLE [dbo].[ReportTypes] CHECK CONSTRAINT [FK_ParentReportTypes_ReportTypes] +GO +ALTER TABLE [dbo].[ReportTypes] WITH CHECK ADD CONSTRAINT [FK_ReportTypes_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[ReportTypes] CHECK CONSTRAINT [FK_ReportTypes_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[Repositories] WITH CHECK ADD CONSTRAINT [FK_Repositories_RepositoryTypes] FOREIGN KEY([RepositoryTypeId]) +REFERENCES [dbo].[RepositoryTypes] ([RepositoryTypeId]) +GO +ALTER TABLE [dbo].[Repositories] CHECK CONSTRAINT [FK_Repositories_RepositoryTypes] +GO +ALTER TABLE [dbo].[SCHEDULER_CRON_TRIGGERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_CRON_TRIGGERS_SCHEDULER_TRIGGERS] FOREIGN KEY([TRIGGER_NAME], [TRIGGER_GROUP]) +REFERENCES [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_CRON_TRIGGERS] CHECK CONSTRAINT [FK_SCHEDULER_CRON_TRIGGERS_SCHEDULER_TRIGGERS] +GO +ALTER TABLE [dbo].[SCHEDULER_JOB_LISTENERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_JOB_LISTENERS_SCHEDULER_JOB_DETAILS] FOREIGN KEY([JOB_NAME], [JOB_GROUP]) +REFERENCES [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_JOB_LISTENERS] CHECK CONSTRAINT [FK_SCHEDULER_JOB_LISTENERS_SCHEDULER_JOB_DETAILS] +GO +ALTER TABLE [dbo].[SCHEDULER_SIMPLE_TRIGGERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_SIMPLE_TRIGGERS_SCHEDULER_TRIGGERS] FOREIGN KEY([TRIGGER_NAME], [TRIGGER_GROUP]) +REFERENCES [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_SIMPLE_TRIGGERS] CHECK CONSTRAINT [FK_SCHEDULER_SIMPLE_TRIGGERS_SCHEDULER_TRIGGERS] +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGER_LISTENERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_TRIGGER_LISTENERS_SCHEDULER_TRIGGERS] FOREIGN KEY([TRIGGER_NAME], [TRIGGER_GROUP]) +REFERENCES [dbo].[SCHEDULER_TRIGGERS] ([TRIGGER_NAME], [TRIGGER_GROUP]) +ON DELETE CASCADE +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGER_LISTENERS] CHECK CONSTRAINT [FK_SCHEDULER_TRIGGER_LISTENERS_SCHEDULER_TRIGGERS] +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGERS] WITH CHECK ADD CONSTRAINT [FK_SCHEDULER_TRIGGERS_SCHEDULER_JOB_DETAILS] FOREIGN KEY([JOB_NAME], [JOB_GROUP]) +REFERENCES [dbo].[SCHEDULER_JOB_DETAILS] ([JOB_NAME], [JOB_GROUP]) +GO +ALTER TABLE [dbo].[SCHEDULER_TRIGGERS] CHECK CONSTRAINT [FK_SCHEDULER_TRIGGERS_SCHEDULER_JOB_DETAILS] +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] WITH CHECK ADD CONSTRAINT [FK_ScreeningLawyerKeyMap_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] CHECK CONSTRAINT [FK_ScreeningLawyerKeyMap_Entities] +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] WITH CHECK ADD CONSTRAINT [FK_ScreeningLawyerKeyMap_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[ScreeningLawyerKeyMap] CHECK CONSTRAINT [FK_ScreeningLawyerKeyMap_Walls] +GO +ALTER TABLE [dbo].[SummaryDetails] WITH NOCHECK ADD CONSTRAINT [FK_SummaryDetails_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[SummaryDetails] CHECK CONSTRAINT [FK_SummaryDetails_Entities] +GO +ALTER TABLE [dbo].[SummaryDetails] WITH NOCHECK ADD CONSTRAINT [FK_SummaryDetails_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[SummaryDetails] CHECK CONSTRAINT [FK_SummaryDetails_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerActivities_Activities] FOREIGN KEY([ActivityId]) +REFERENCES [dbo].[Activities] ([ActivityId]) +GO +ALTER TABLE [dbo].[TrackerActivities] CHECK CONSTRAINT [FK_TrackerActivities_Activities] +GO +ALTER TABLE [dbo].[TrackerActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerActivities_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerActivities] CHECK CONSTRAINT [FK_TrackerActivities_Trackers] +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerClientsAndMatters_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] CHECK CONSTRAINT [FK_TrackerClientsAndMatters_Entities] +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerClientsAndMatters_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] CHECK CONSTRAINT [FK_TrackerClientsAndMatters_Trackers] +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerClientsAndMatters_TrackerSides] FOREIGN KEY([TrackerSideId]) +REFERENCES [dbo].[TrackerSides] ([TrackerSideId]) +GO +ALTER TABLE [dbo].[TrackerClientsAndMatters] CHECK CONSTRAINT [FK_TrackerClientsAndMatters_TrackerSides] +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionActivities_Activities] FOREIGN KEY([ActivityId]) +REFERENCES [dbo].[Activities] ([ActivityId]) +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] CHECK CONSTRAINT [FK_TrackerExecutionActivities_Activities] +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionActivities_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[TrackerExecutionActivities] CHECK CONSTRAINT [FK_TrackerExecutionActivities_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionClientsAndMatters_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] CHECK CONSTRAINT [FK_TrackerExecutionClientsAndMatters_Entities] +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionClientsAndMatters_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[TrackerExecutionClientsAndMatters] CHECK CONSTRAINT [FK_TrackerExecutionClientsAndMatters_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionLibraries_Libraries] FOREIGN KEY([LibraryId]) +REFERENCES [dbo].[Repositories] ([RepositoryId]) +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] CHECK CONSTRAINT [FK_TrackerExecutionLibraries_Libraries] +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] WITH CHECK ADD CONSTRAINT [FK_TrackerExecutionLibraries_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[TrackerExecutionLibraries] CHECK CONSTRAINT [FK_TrackerExecutionLibraries_TrackerExecutions] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_Trackers] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_TrackerSides] FOREIGN KEY([TrackerSideId]) +REFERENCES [dbo].[TrackerSides] ([TrackerSideId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_TrackerSides] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_TrackerTypes] FOREIGN KEY([TrackerTypeId]) +REFERENCES [dbo].[TrackerTypes] ([TrackerTypeId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_TrackerTypes] +GO +ALTER TABLE [dbo].[TrackerExecutions] WITH NOCHECK ADD CONSTRAINT [FK_TrackerExecutions_Walls] FOREIGN KEY([LinkedPolicyId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[TrackerExecutions] CHECK CONSTRAINT [FK_TrackerExecutions_Walls] +GO +ALTER TABLE [dbo].[TrackerRepositories] WITH CHECK ADD CONSTRAINT [FK_ThresholdRepositories_Repositories] FOREIGN KEY([RepositoryId]) +REFERENCES [dbo].[Repositories] ([RepositoryId]) +GO +ALTER TABLE [dbo].[TrackerRepositories] CHECK CONSTRAINT [FK_ThresholdRepositories_Repositories] +GO +ALTER TABLE [dbo].[TrackerRepositories] WITH CHECK ADD CONSTRAINT [FK_TrackerRepositories_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerRepositories] CHECK CONSTRAINT [FK_TrackerRepositories_Trackers] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_ApplicationUsers] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_ApplicationUsers_Modifier] FOREIGN KEY([ModifierId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_ApplicationUsers_Modifier] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_TrackerTypes] FOREIGN KEY([TrackerTypeId]) +REFERENCES [dbo].[TrackerTypes] ([TrackerTypeId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_TrackerTypes] +GO +ALTER TABLE [dbo].[Trackers] WITH CHECK ADD CONSTRAINT [FK_Trackers_Walls] FOREIGN KEY([LinkedPolicyId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[Trackers] CHECK CONSTRAINT [FK_Trackers_Walls] +GO +ALTER TABLE [dbo].[TrackerSides] WITH CHECK ADD CONSTRAINT [FK_TrackerSides_Tracker] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerSides] CHECK CONSTRAINT [FK_TrackerSides_Tracker] +GO +ALTER TABLE [dbo].[TrackerSides] WITH CHECK ADD CONSTRAINT [FK_TrackerSides_WallSide] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[TrackerSides] CHECK CONSTRAINT [FK_TrackerSides_WallSide] +GO +ALTER TABLE [dbo].[TrackerTypes] WITH CHECK ADD CONSTRAINT [FK_TrackerTypes_TrackerCategories] FOREIGN KEY([TrackerCategoryId]) +REFERENCES [dbo].[TrackerCategories] ([TrackerCategoryId]) +GO +ALTER TABLE [dbo].[TrackerTypes] CHECK CONSTRAINT [FK_TrackerTypes_TrackerCategories] +GO +ALTER TABLE [dbo].[TrackerWatchList] WITH CHECK ADD CONSTRAINT [FK_ThresholdWatchList_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[TrackerWatchList] CHECK CONSTRAINT [FK_ThresholdWatchList_Entities] +GO +ALTER TABLE [dbo].[TrackerWatchList] WITH CHECK ADD CONSTRAINT [FK_TrackerWatchList_Trackers] FOREIGN KEY([TrackerId]) +REFERENCES [dbo].[Trackers] ([TrackerId]) +GO +ALTER TABLE [dbo].[TrackerWatchList] CHECK CONSTRAINT [FK_TrackerWatchList_Trackers] +GO +ALTER TABLE [dbo].[TrackerWatchList] WITH CHECK ADD CONSTRAINT [FK_TrackerWatchList_TrackerSides] FOREIGN KEY([TrackerSideId]) +REFERENCES [dbo].[TrackerSides] ([TrackerSideId]) +GO +ALTER TABLE [dbo].[TrackerWatchList] CHECK CONSTRAINT [FK_TrackerWatchList_TrackerSides] +GO +ALTER TABLE [dbo].[UserActivityCounts] WITH CHECK ADD CONSTRAINT [FK_UserActivityCounts_Entities] FOREIGN KEY([UserEntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[UserActivityCounts] CHECK CONSTRAINT [FK_UserActivityCounts_Entities] +GO +ALTER TABLE [dbo].[UserActivityCounts] WITH CHECK ADD CONSTRAINT [FK_UserActivityCounts_TrackerExecutions] FOREIGN KEY([TrackerExecutionId]) +REFERENCES [dbo].[TrackerExecutions] ([TrackerExecutionId]) +GO +ALTER TABLE [dbo].[UserActivityCounts] CHECK CONSTRAINT [FK_UserActivityCounts_TrackerExecutions] +GO +ALTER TABLE [dbo].[WallAccessTypes] WITH CHECK ADD CONSTRAINT [FK_WallAccessTypes_PolicyCategories] FOREIGN KEY([PolicyCategoryId]) +REFERENCES [dbo].[PolicyCategories] ([PolicyCategoryId]) +GO +ALTER TABLE [dbo].[WallAccessTypes] CHECK CONSTRAINT [FK_WallAccessTypes_PolicyCategories] +GO +ALTER TABLE [dbo].[WallCustomComboValues] WITH CHECK ADD CONSTRAINT [FK_WallCustomComboValues_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[WallCustomComboValues] CHECK CONSTRAINT [FK_WallCustomComboValues_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[WallCustomFieldConfig] WITH CHECK ADD CONSTRAINT [FK_WallCustomFieldConfig_PolicyCategoryGroups] FOREIGN KEY([PolicyCategoryGroupId]) +REFERENCES [dbo].[PolicyCategoryGroups] ([PolicyCategoryGroupId]) +GO +ALTER TABLE [dbo].[WallCustomFieldConfig] CHECK CONSTRAINT [FK_WallCustomFieldConfig_PolicyCategoryGroups] +GO +ALTER TABLE [dbo].[WallExceptions] WITH NOCHECK ADD CONSTRAINT [FK_WallExceptions_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[WallExceptions] CHECK CONSTRAINT [FK_WallExceptions_ApplicationUsers] +GO +ALTER TABLE [dbo].[WallExceptions] WITH CHECK ADD CONSTRAINT [FK_WallExceptions_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[WallExceptions] CHECK CONSTRAINT [FK_WallExceptions_Entities] +GO +ALTER TABLE [dbo].[WallExceptions] WITH CHECK ADD CONSTRAINT [FK_WallExceptions_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[WallExceptions] CHECK CONSTRAINT [FK_WallExceptions_Walls] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [FK_Walls_ApplicationUsers] FOREIGN KEY([CreatorId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [FK_Walls_ApplicationUsers] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [FK_Walls_ApplicationUsers2] FOREIGN KEY([ModifierId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [FK_Walls_ApplicationUsers2] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [FK_Walls_WallAccessTypes] FOREIGN KEY([WallAccessTypeId]) +REFERENCES [dbo].[WallAccessTypes] ([WallAccessTypeId]) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [FK_Walls_WallAccessTypes] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_Entities] FOREIGN KEY([EntityId]) +REFERENCES [dbo].[Entities] ([EntityId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_Entities] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_WallRoleId] FOREIGN KEY([WallRoleId]) +REFERENCES [dbo].[WallRoles] ([WallRoleId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_WallRoleId] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_Walls] +GO +ALTER TABLE [dbo].[WallSideEntities] WITH CHECK ADD CONSTRAINT [FK_WallSideEntities_WallSides] FOREIGN KEY([WallSideId]) +REFERENCES [dbo].[WallSides] ([WallSideId]) +GO +ALTER TABLE [dbo].[WallSideEntities] CHECK CONSTRAINT [FK_WallSideEntities_WallSides] +GO +ALTER TABLE [dbo].[WallSides] WITH CHECK ADD CONSTRAINT [FK_WallSides_Walls] FOREIGN KEY([WallId]) +REFERENCES [dbo].[Walls] ([WallId]) +GO +ALTER TABLE [dbo].[WallSides] CHECK CONSTRAINT [FK_WallSides_Walls] +GO +ALTER TABLE [dbo].[WidgetInstance] WITH CHECK ADD CONSTRAINT [FK_WidgetZoneWidgets_Widget] FOREIGN KEY([WidgetId]) +REFERENCES [dbo].[Widget] ([Id]) +GO +ALTER TABLE [dbo].[WidgetInstance] CHECK CONSTRAINT [FK_WidgetZoneWidgets_Widget] +GO +ALTER TABLE [dbo].[WidgetInstance] WITH CHECK ADD CONSTRAINT [FK_WidgetZoneWidgets_WidgetZone] FOREIGN KEY([WidgetZoneId]) +REFERENCES [dbo].[WidgetZone] ([Id]) +GO +ALTER TABLE [dbo].[WidgetInstance] CHECK CONSTRAINT [FK_WidgetZoneWidgets_WidgetZone] +GO +ALTER TABLE [dbo].[WidgetZone] WITH CHECK ADD CONSTRAINT [FK_WidgetZone_ApplicationUsers] FOREIGN KEY([UserId]) +REFERENCES [dbo].[ApplicationUsers] ([UserId]) +GO +ALTER TABLE [dbo].[WidgetZone] CHECK CONSTRAINT [FK_WidgetZone_ApplicationUsers] +GO +ALTER TABLE [dbo].[WidgetZone] WITH CHECK ADD CONSTRAINT [FK_WidgetZone_WidgetZoneType] FOREIGN KEY([WidgetZoneTypeId]) +REFERENCES [dbo].[WidgetZoneType] ([Id]) +GO +ALTER TABLE [dbo].[WidgetZone] CHECK CONSTRAINT [FK_WidgetZone_WidgetZoneType] +GO +ALTER TABLE [dbo].[DigestNotifications] WITH CHECK ADD CONSTRAINT [CK_DigestNotifications] CHECK (([EmailAddress] IS NOT NULL OR [NotificationHistoryId] IS NOT NULL)) +GO +ALTER TABLE [dbo].[DigestNotifications] CHECK CONSTRAINT [CK_DigestNotifications] +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] WITH NOCHECK ADD CONSTRAINT [CK_EntityToEntityRelationships] CHECK (([PrimaryEntityId]<>[SubordinateEntityId])) +GO +ALTER TABLE [dbo].[EntityToEntityRelationships] CHECK CONSTRAINT [CK_EntityToEntityRelationships] +GO +ALTER TABLE [dbo].[MatterTeamRole] WITH NOCHECK ADD CONSTRAINT [CK_MatterTeamRole_CanRemoveUsers] CHECK (([CanRemoveUsers]=(0) OR [CanRemoveUsers]=(1) AND [IsAdmin]=(1))) +GO +ALTER TABLE [dbo].[MatterTeamRole] CHECK CONSTRAINT [CK_MatterTeamRole_CanRemoveUsers] +GO +ALTER TABLE [dbo].[MatterTeamRole] WITH NOCHECK ADD CONSTRAINT [CK_MatterTeamRole_IsDelegate] CHECK (([IsDelegate]=(0) OR [IsDelegate]=(1) AND [IsAdmin]=(1))) +GO +ALTER TABLE [dbo].[MatterTeamRole] CHECK CONSTRAINT [CK_MatterTeamRole_IsDelegate] +GO +ALTER TABLE [dbo].[Walls] WITH CHECK ADD CONSTRAINT [CK_Walls_FoundationalGroupId] CHECK ((isnumeric([FoundationalGroupId])<>(1) OR CONVERT([int],[FoundationalGroupId])=[WallId])) +GO +ALTER TABLE [dbo].[Walls] CHECK CONSTRAINT [CK_Walls_FoundationalGroupId] +GO +/****** Object: StoredProcedure [dbo].[usp_makeunicodecolumn] Script Date: 2/6/2018 1:34:19 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + +-- Register procedure +CREATE PROCEDURE [dbo].[usp_makeunicodecolumn] + @TABLE_NAME VARCHAR(50) = 0, -- name of table + @columnname VARCHAR(50) = 0, -- name of column + @indexname VARCHAR (50) = 0, -- name of index + @prevtype VARCHAR (50) = 'varchar', -- previous type name + @newtype VARCHAR (50) = 'nvarchar' -- new type name +AS +-- Check if this column doesn't need changes +IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=@TABLE_NAME AND COLUMN_NAME=@columnname AND DATA_TYPE = @prevtype) +BEGIN + DECLARE @IsNullable VARCHAR(10) + DECLARE @precision VARCHAR(10) + SET @IsNullable = '1' + + -- Get if this columns may NULL value, and length of column in chars + SELECT @IsNullable = IS_NULLABLE, @precision = CHARACTER_MAXIMUM_LENGTH FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=@TABLE_NAME AND COLUMN_NAME=@columnname AND DATA_TYPE = @prevtype + + DECLARE @tsql VARCHAR (200) + DECLARE @indexIsDroped BIT + SET @indexIsDroped = 0 + + -- DROP existing index + IF (LEN(@indexname) > 1) AND (EXISTS (SELECT INDEXPROPERTY(OBJECT_ID(@TABLE_NAME), @indexname, 'IndexID'))) + BEGIN + SET @tsql = 'DROP INDEX ' + @TABLE_NAME + '.' + @indexname + EXEC (@tsql) + SET @indexIsDroped = 1 + END + -- Change column with new datatype + SET @tsql = 'ALTER TABLE [' + @TABLE_NAME + '] ALTER COLUMN [' + @columnname + '] ' + @newtype + IF (@precision IS NOT NULL) + BEGIN + -- Truncate length of column + IF (@precision > 4000) + BEGIN + SET @precision = 4000 + DECLARE @tsql_truncate VARCHAR(255) + SET @tsql_truncate = 'UPDATE [' + @TABLE_NAME + '] SET ' + @columnname + ' = LEFT(' + @columnname + ', 4000) WHERE LEN(' + @columnname + ') > 4000' + EXEC (@tsql_truncate) + END + SET @tsql = @tsql + '(' + @precision + ')' + END + IF (@IsNullable = '0' OR @IsNullable = 'NO') + SET @tsql = @tsql + ' NOT NULL' + ELSE SET @tsql = @tsql + ' NULL' + EXEC (@tsql) + + -- Create index if it was deleted + IF (@indexIsDroped > 0) + BEGIN + SET @tsql = 'CREATE INDEX ' + @indexname + ' ON ' + @TABLE_NAME + '(' + @columnname + ') ' + EXEC (@tsql) + END +END +GO diff --git a/modules/sqlserver_install/templates/script_walls_tables.sql.erb b/modules/sqlserver_install/templates/script_walls_tables.sql.erb new file mode 100644 index 0000000..101d588 --- /dev/null +++ b/modules/sqlserver_install/templates/script_walls_tables.sql.erb @@ -0,0 +1,2126 @@ +USE [<%=@sqlserverdbname%>] +GO + +/****** Object: Table [dbo].[AccessHistory] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AccessHistory]( + [AccessHistoryId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [WallSideId] [int] NOT NULL, + [UserEntityId] [int] NULL, + [ActivityType] [nvarchar](10) NOT NULL, + [IsPending] [bit] NOT NULL, + CONSTRAINT [PK_AccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Activities] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Activities]( + [ActivityId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryTypeId] [int] NOT NULL, + [ActivityName] [nvarchar](255) NOT NULL, + [ActivityRemoteLabel] [nvarchar](255) NOT NULL, + [ActivityCategoryId] [int] NOT NULL, + CONSTRAINT [PK_Activities] PRIMARY KEY CLUSTERED +( + [ActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ActivityCategories] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ActivityCategories]( + [ActivityCategoryId] [int] IDENTITY(1,1) NOT NULL, + [ActivityCategoryName] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_ActivityCategories] PRIMARY KEY CLUSTERED +( + [ActivityCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[AlertDetails] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AlertDetails]( + [AlertDetailId] [int] IDENTITY(1,1) NOT NULL, + [AlertId] [int] NOT NULL, + [ActivityRemoteLabel] [nvarchar](255) NULL, + [ActivityName] [nvarchar](255) NOT NULL, + [RepositoryRemoteLabel] [nvarchar](255) NOT NULL, + [RepositoryName] [nvarchar](255) NOT NULL, + [RemoteObjectId] [nvarchar](100) NULL, + [RemoteObjectName] [nvarchar](255) NULL, + [RemoteObjectType] [nvarchar](255) NULL, + [RemoteObjectOwner] [nvarchar](255) NULL, + [ClientName] [nvarchar](255) NULL, + [MatterName] [nvarchar](255) NULL, + [EventTime] [datetime] NOT NULL, + [Custom1] [nvarchar](255) NULL, + [Custom2] [nvarchar](255) NULL, + [Custom3] [nvarchar](255) NULL, + [Custom4] [nvarchar](255) NULL, + [Custom5] [nvarchar](255) NULL, + [Created] [datetime] NOT NULL, + [RemoteObjectVersion] [nvarchar](10) NULL, + [ClientId] [nvarchar](100) NULL, + [MatterId] [nvarchar](100) NULL, + CONSTRAINT [PK_TrackerAlertDetails] PRIMARY KEY CLUSTERED +( + [AlertDetailId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[AlertDetailsCustomFields] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AlertDetailsCustomFields]( + [FieldId] [nvarchar](255) NOT NULL, + [FieldName] [varchar](50) NOT NULL, + [IsEnabled] [bit] NOT NULL, + [AlertDetailsCustomFieldId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryTypeId] [int] NULL, + CONSTRAINT [PK_CustomFields] PRIMARY KEY CLUSTERED +( + [AlertDetailsCustomFieldId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Alerts] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Alerts]( + [AlertId] [int] IDENTITY(1,1) NOT NULL, + [TrackerExecutionId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [UserName] [nvarchar](255) NULL, + [ActivityCount] [int] NOT NULL, + [StatisticsValue] [decimal](10, 2) NULL, + CONSTRAINT [PK_TrackerAlerts] PRIMARY KEY CLUSTERED +( + [AlertId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationRolesAT] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationRolesAT]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleName] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_ApplicationRolesAT] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationRolesMTM] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationRolesMTM]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleName] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_ApplicationRolesMTM] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationRolesWB] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationRolesWB]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleName] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_Roles] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ApplicationUsers] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ApplicationUsers]( + [UserId] [int] IDENTITY(1,1) NOT NULL, + [WBRoleId] [int] NULL, + [UserName] [nvarchar](50) NOT NULL, + [Password] [nvarchar](50) NOT NULL, + [Name] [nvarchar](100) NULL, + [Email] [nvarchar](100) NULL, + [IsEnabled] [bit] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [LastLogin] [datetime] NULL, + [MTMRoleId] [int] NULL, + [ATRoleId] [int] NULL, + [InsidersModuleAccess] [bit] NOT NULL, + CONSTRAINT [PK_ApplicationUsers] PRIMARY KEY CLUSTERED +( + [UserId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Attachments] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Attachments]( + [AttachmentId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [FileName] [nvarchar](255) NOT NULL, + [FileSize] [int] NOT NULL, + [FileContentType] [nvarchar](75) NULL, + [FileContent] [image] NULL, + [CreatorId] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_Attachments] PRIMARY KEY CLUSTERED +( + [AttachmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[AttorneyAcknowledgments] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[AttorneyAcknowledgments]( + [AcknowledgmentId] [int] IDENTITY(1,1) NOT NULL, + [WallSideId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [isAcknowledged] [bit] NOT NULL, + [DateOfAcceptance] [datetime] NULL, + [DateOfNotice] [datetime] NULL, + [isArchived] [bit] NOT NULL, + CONSTRAINT [PK_AttorneyAcknowledgments] PRIMARY KEY CLUSTERED +( + [AcknowledgmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[CommonTerms] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[CommonTerms]( + [OriginalValue] [nvarchar](50) NOT NULL, + [ReplacedValue] [nvarchar](50) NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Config] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Config]( + [ConfigId] [int] IDENTITY(1,1) NOT NULL, + [ConfigVariable] [nvarchar](255) NOT NULL, + [ConfigValue1] [nvarchar](max) NULL, + [ConfigValue2] [nvarchar](4000) NULL, + [Category] [nvarchar](64) NULL, + [ConfigType] [nvarchar](50) NULL, + [MetaData] [nvarchar](max) NULL, + [SubCategoryOf] [nvarchar](255) NULL, + CONSTRAINT [PK_Config] PRIMARY KEY CLUSTERED +( + [ConfigId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[DefaultNotifications] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DefaultNotifications]( + [NotificationId] [int] NOT NULL, + [WallAccessTypeId] [int] NOT NULL, + CONSTRAINT [PK_DefaultNotifications] PRIMARY KEY CLUSTERED +( + [NotificationId] ASC, + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DefaultTrackers] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DefaultTrackers]( + [TrackerId] [int] NOT NULL, + [WallAccessTypeId] [int] NOT NULL, + CONSTRAINT [PK_DefaultTrackers] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC, + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DigestNotificationAttachments] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DigestNotificationAttachments]( + [NotificationAttachmentId] [int] NOT NULL, + [DigestNotificationId] [bigint] NOT NULL, + CONSTRAINT [PK_DigestNotificationAttachments] PRIMARY KEY CLUSTERED +( + [NotificationAttachmentId] ASC, + [DigestNotificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DigestNotificationContent] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DigestNotificationContent]( + [DigestNotificationContentId] [int] IDENTITY(1,1) NOT NULL, + [NotificationText] [ntext] NULL, + [Subject] [nvarchar](1000) NULL, + [From] [nvarchar](1000) NULL, + CONSTRAINT [PK_DigestNotificationInfo] PRIMARY KEY CLUSTERED +( + [DigestNotificationContentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[DigestNotifications] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DigestNotifications]( + [DigestNotificationId] [bigint] IDENTITY(1,1) NOT NULL, + [NotificationId] [int] NOT NULL, + [EmailAddress] [nvarchar](50) NULL, + [CreatedDate] [datetime] NOT NULL, + [DigestNotificationContentId] [int] NOT NULL, + [NotificationHistoryId] [int] NULL, + CONSTRAINT [PK_DigestNotifications] PRIMARY KEY CLUSTERED +( + [DigestNotificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DynamicEntityGroupDefinitions] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DynamicEntityGroupDefinitions]( + [EntityId] [int] NOT NULL, + [DefinitionXml] [nvarchar](4000) NOT NULL, + [CreatedBy] [int] NULL, + CONSTRAINT [PK_DDynamicEntityGroupDefinitions] PRIMARY KEY CLUSTERED +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[DynamicEntityGroupExceptions] Script Date: 2/6/2018 1:34:16 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[DynamicEntityGroupExceptions]( + [DynamicGroupEntityId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [CreatorId] [int] NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_DynamicEntityGroupExceptions] PRIMARY KEY CLUSTERED +( + [DynamicGroupEntityId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[Entities] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Entities]( + [EntityId] [int] IDENTITY(1,1) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [EntityRemoteSystemId] [nvarchar](100) NULL, + [EntityDescription] [nvarchar](255) NULL, + [ParentTypeId] [int] NULL, + [ParentRemoteSystemId] [nvarchar](100) NULL, + [ParentDescription] [nvarchar](255) NULL, + [EntityCustomData] [nvarchar](255) NULL, + [RecordsSystemId] [nvarchar](100) NULL, + [FinancialSystemId] [nvarchar](100) NULL, + [TimeEntrySystemId] [nvarchar](100) NULL, + [WindowsNetworkLogon] [nvarchar](100) NULL, + [CustomField1] [nvarchar](1000) NULL, + [CustomField2] [nvarchar](1000) NULL, + [CustomField3] [nvarchar](1000) NULL, + [CustomField4] [nvarchar](1000) NULL, + [CustomField5] [nvarchar](1000) NULL, + [CustomField6] [nvarchar](1000) NULL, + [CustomField7] [nvarchar](1000) NULL, + [CustomField8] [nvarchar](1000) NULL, + [CustomField9] [nvarchar](1000) NULL, + [CustomField10] [nvarchar](1000) NULL, + [IsEnabledForSearch] [bit] NOT NULL, + [Modified] [datetime] NULL, + [Created] [datetime] NULL, + [MatterOpenStatus] [bit] NULL, + [MatterConfidentialityStatus] [nvarchar](255) NULL, + [MatterTeamEntityId] [int] NULL, + [CustomField11] [nvarchar](1000) NULL, + [CustomField12] [nvarchar](1000) NULL, + [CustomField13] [nvarchar](1000) NULL, + [CustomField14] [nvarchar](1000) NULL, + [CustomField15] [nvarchar](1000) NULL, + [CustomField16] [nvarchar](1000) NULL, + [CustomField17] [nvarchar](1000) NULL, + [CustomField18] [nvarchar](1000) NULL, + [CustomField19] [nvarchar](1000) NULL, + [CustomField20] [nvarchar](1000) NULL, + [CustomField21] [nvarchar](1000) NULL, + [CustomField22] [nvarchar](1000) NULL, + [CustomField23] [nvarchar](1000) NULL, + [CustomField24] [nvarchar](1000) NULL, + [CustomField25] [nvarchar](1000) NULL, + [CustomField26] [nvarchar](1000) NULL, + [CustomField27] [nvarchar](1000) NULL, + [CustomField28] [nvarchar](1000) NULL, + [CustomField29] [nvarchar](1000) NULL, + [CustomField30] [nvarchar](1000) NULL, + [EntityDisplayId] [nvarchar](100) NULL, + [CrmSystemId] [nvarchar](100) NULL, + [TimeBuilderSystemId] [nvarchar](100) NULL, + [FileshareRemoteSystemId] [nvarchar](100) NULL, + [OpenSystemId] [nvarchar](100) NULL, + [NotificationRoleId] [int] NOT NULL, + CONSTRAINT [PK_Entities] PRIMARY KEY CLUSTERED +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntitiesMatterTeamFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntitiesMatterTeamFields]( + [MatterTeamEntityId] [int] NOT NULL, + [IsSelfMaintained] [bit] NOT NULL, + [SelfMaintainingMinHours] [int] NULL, + [SelfMaintainingPeriod] [int] NULL, + [SelfMaintainingPeriodUnit] [nvarchar](32) NULL, + [IsRelationshipPaired] [bit] NOT NULL, + [SelfMaintainingPeriodStart] [datetime] NULL, + [SelfMaintainingPeriodEnd] [datetime] NULL, + CONSTRAINT [PK_EntitiesMatterTeamFields] PRIMARY KEY CLUSTERED +( + [MatterTeamEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntitiesUserFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntitiesUserFields]( + [UserEntityId] [int] NOT NULL, + [IsExceptedFromActiveDirectoryGroups] [bit] NOT NULL, + [IsExceptedFromJoiningMatterTeam] [bit] NOT NULL, + CONSTRAINT [PK_EntitiesUserFields] PRIMARY KEY CLUSTERED +( + [UserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityCustomComboValues] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityCustomComboValues]( + [Field] [nvarchar](32) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [Value] [nvarchar](200) NOT NULL, + CONSTRAINT [PK_EntityCustomComboValues] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [EntityTypeId] ASC, + [Value] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityCustomFieldConfig] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityCustomFieldConfig]( + [Field] [nvarchar](32) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [DisplayName] [nvarchar](64) NOT NULL, + [Type] [nvarchar](32) NOT NULL, + [Description] [nvarchar](100) NOT NULL, + [IsIncludedInNotifications] [bit] NOT NULL, + [IsIncludedInEntityTooltip] [bit] NOT NULL, + [IsMultiValued] [bit] NOT NULL, + [IsIncludedInExtendedValidation] [bit] NOT NULL, + [IsIncludedInGeneralInformation] [bit] NOT NULL, + [IsConfidential] [bit] NOT NULL, + [DateTimeFormat] [nvarchar](50) NULL, + CONSTRAINT [PK_EntityCustomFieldConfig] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityKeyMap] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityKeyMap]( + [EntityId] [int] NOT NULL, + [ParentEntityId] [int] NOT NULL, + [RoleId] [int] NULL, + [Reason] [nvarchar](250) NULL, + [ExpirationDate] [datetime] NULL, + [IsActive] [bit] NOT NULL, + [DemotionRoleId] [int] NULL, + [IsMTHistoryConflict] [bit] NOT NULL, + CONSTRAINT [PK_EntityKeyMap] PRIMARY KEY CLUSTERED +( + [EntityId] ASC, + [ParentEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityRelationshipTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityRelationshipTypes]( + [EntityRelationshipTypeId] [int] IDENTITY(1,1) NOT NULL, + [Description] [nvarchar](200) NOT NULL, + [PrimaryType] [nvarchar](100) NOT NULL, + [SubordinateType] [nvarchar](100) NOT NULL, + [IsDirectRelationshipValidated] [bit] NOT NULL, + [IsSharedRelationshipValidated] [bit] NOT NULL, + CONSTRAINT [PK_EntityRelationshipTypes] PRIMARY KEY CLUSTERED +( + [EntityRelationshipTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityToEntityRelationships] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityToEntityRelationships]( + [EntityRelationshipTypeId] [int] NOT NULL, + [PrimaryEntityId] [int] NOT NULL, + [SubordinateEntityId] [int] NOT NULL, + CONSTRAINT [PK_EntityToEntityRelationships] PRIMARY KEY CLUSTERED +( + [EntityRelationshipTypeId] ASC, + [PrimaryEntityId] ASC, + [SubordinateEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[EntityTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[EntityTypes]( + [EntityTypeId] [int] IDENTITY(1,1) NOT NULL, + [EntityType] [nvarchar](100) NOT NULL, + [EntityTypePl] [nvarchar](100) NOT NULL, + [IsUserType] [bit] NOT NULL, + CONSTRAINT [PK_EntityTypes] PRIMARY KEY CLUSTERED +( + [EntityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ErrorLog] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ErrorLog]( + [ErrorLogId] [int] IDENTITY(1,1) NOT NULL, + [ServiceType] [nvarchar](64) NOT NULL, + [ServiceId] [nvarchar](255) NULL, + [LogLevel] [nvarchar](32) NOT NULL, + [LogMessage] [ntext] NOT NULL, + [LogException] [ntext] NULL, + [Created] [datetime] NOT NULL, + CONSTRAINT [PK_ErrorLog] PRIMARY KEY CLUSTERED +( + [ErrorLogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExtensionQueryResults] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExtensionQueryResults]( + [ExtensionQueryResultId] [int] IDENTITY(1,1) NOT NULL, + [RequestId] [nvarchar](128) NOT NULL, + [ExtensionServiceName] [nvarchar](255) NOT NULL, + [Status] [nvarchar](64) NOT NULL, + [ResultXml] [nvarchar](max) NULL, + [LastUpdateTime] [datetime] NOT NULL, + [Messages] [nvarchar](max) NULL, + CONSTRAINT [PK_ExtensionQueryResults] PRIMARY KEY CLUSTERED +( + [ExtensionQueryResultId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExtensionServiceJobs] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExtensionServiceJobs]( + [ExtensionServiceJobsId] [int] IDENTITY(1,1) NOT NULL, + [ExtensionServiceName] [nvarchar](255) NOT NULL, + [ExtensionType] [nvarchar](64) NULL, + [LibraryName] [nvarchar](128) NULL, + [JobType] [nvarchar](255) NOT NULL, + [JobXML] [ntext] NULL, + [JobState] [nvarchar](32) NOT NULL, + [FinalStatus] [nvarchar](32) NULL, + [Retries] [int] NOT NULL, + [QueueTime] [datetime] NOT NULL, + [StateLastChangedTime] [datetime] NOT NULL, + [StartTime] [datetime] NULL, + [EndTime] [datetime] NULL, + [Messages] [ntext] NULL, + [OperationId] [uniqueidentifier] NULL, + CONSTRAINT [PK_ExtensionServiceJobs] PRIMARY KEY CLUSTERED +( + [ExtensionServiceJobsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExtensionServiceLocks] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExtensionServiceLocks]( + [LockName] [nvarchar](256) NOT NULL, + [LockTime] [datetime] NOT NULL, + CONSTRAINT [PK_ExtensionServiceLocks] PRIMARY KEY CLUSTERED +( + [LockName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExternalUserFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExternalUserFields]( + [ExternalUserEntityId] [int] NOT NULL, + [CreatedBy] [int] NOT NULL, + CONSTRAINT [PK_ExternalUserFields] PRIMARY KEY CLUSTERED +( + [ExternalUserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ExternalUsersAccessHistory] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ExternalUsersAccessHistory]( + [AccessHistoryId] [int] IDENTITY(1,1) NOT NULL, + [ExternalUserEntityId] [int] NOT NULL, + [MatterEntityId] [int] NOT NULL, + [ActivityType] [nvarchar](10) NOT NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityReason] [nvarchar](1000) NULL, + CONSTRAINT [PK_ExternalUsersAccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[FileShareADGroupStatuses] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[FileShareADGroupStatuses]( + [GroupName] [nvarchar](256) NOT NULL, + [LastAccessTime] [datetime] NOT NULL, + [LastModificationTime] [datetime] NULL, + [SecurityId] [varchar](184) NULL, + CONSTRAINT [PK_FileShareADGroupStatuses] PRIMARY KEY CLUSTERED +( + [GroupName] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[GlobalExceptions] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[GlobalExceptions]( + [EntityId] [int] NOT NULL, + [CreatorId] [int] NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_GlobalExceptions] PRIMARY KEY CLUSTERED +( + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[GroupEntityLog] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[GroupEntityLog]( + [LogId] [int] IDENTITY(1,1) NOT NULL, + [User] [nvarchar](255) NOT NULL, + [GroupEntityId] [int] NOT NULL, + [LogMessageType] [nvarchar](50) NOT NULL, + [LogMessage] [ntext] NULL, + [Created] [datetime] NOT NULL, + CONSTRAINT [PK_GroupEntityLog] PRIMARY KEY CLUSTERED +( + [LogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[HiddenMatterTeams] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[HiddenMatterTeams]( + [HiddenMatterTeamId] [int] IDENTITY(1,1) NOT NULL, + [UserId] [int] NOT NULL, + [UserIdType] [nvarchar](10) NOT NULL, + [MatterTeamEntityId] [int] NOT NULL, + CONSTRAINT [PK_HiddenMatterTeams] PRIMARY KEY CLUSTERED +( + [HiddenMatterTeamId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[InsidersReportFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[InsidersReportFields]( + [InsidersReportFieldsId] [int] NOT NULL, + [FieldName] [nvarchar](128) NULL, + [FieldType] [nvarchar](255) NOT NULL, + [Description] [nvarchar](255) NOT NULL, + [TableName] [nvarchar](255) NULL, + [ColumnName] [nvarchar](255) NULL, + [EntityTypeId] [int] NULL, + [OrderId] [int] NOT NULL, + [EmptyText] [nvarchar](100) NULL, + [IsHeaderField] [bit] NOT NULL, + [DateTimeFormat] [nvarchar](50) NULL, + [IsPermanentInsiders] [bit] NOT NULL, + CONSTRAINT [PK_InsidersReportFields] PRIMARY KEY CLUSTERED +( + [InsidersReportFieldsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[InsidersReportLogs] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[InsidersReportLogs]( + [InsidersReportLogId] [int] IDENTITY(1,1) NOT NULL, + [ApplicationUserId] [int] NOT NULL, + [MatterEntityId] [int] NULL, + [LogMessage] [nvarchar](max) NOT NULL, + [Created] [datetime] NOT NULL, + CONSTRAINT [PK_InsidersReportLogs] PRIMARY KEY CLUSTERED +( + [InsidersReportLogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[InsidersReports] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[InsidersReports]( + [InsidersReportsId] [int] IDENTITY(1,1) NOT NULL, + [MatterEntityID] [int] NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [LastRun] [datetime] NOT NULL, + [ReportXML] [ntext] NOT NULL, + CONSTRAINT [PK_InsidersReports] PRIMARY KEY CLUSTERED +( + [InsidersReportsId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[Log] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Log]( + [LogId] [int] IDENTITY(1,1) NOT NULL, + [UserId] [int] NULL, + [WallId] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [LogMessage] [ntext] NULL, + [LogMessageType] [nvarchar](50) NOT NULL, + CONSTRAINT [PK_Log] PRIMARY KEY CLUSTERED +( + [LogId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterAccessHistory] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterAccessHistory]( + [AccessHistoryId] [int] NOT NULL, + [MatterEntityId] [int] NOT NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityReason] [nvarchar](1000) NULL, + [WasAddedBySelfMaintaining] [bit] NOT NULL, + CONSTRAINT [PK_MatterAccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC, + [MatterEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamExceptions] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamExceptions]( + [MatterTeamEntityId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [Creator] [nvarchar](255) NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_MatterTeamExceptions] PRIMARY KEY CLUSTERED +( + [MatterTeamEntityId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamHistories] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamHistories]( + [MatterTeamHistoryId] [int] IDENTITY(1,1) NOT NULL, + [MatterEntityId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [RoleId] [int] NOT NULL, + [Reason] [nvarchar](max) NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityTypeId] [tinyint] NOT NULL, + [Creator] [nvarchar](255) NOT NULL, + [IsActive] [bit] NOT NULL, + CONSTRAINT [PK_MatterTeamHistories] PRIMARY KEY CLUSTERED +( + [MatterTeamHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamHistoryActivityTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamHistoryActivityTypes]( + [ActivityTypeId] [tinyint] IDENTITY(0,1) NOT NULL, + [ActivityTypeName] [nvarchar](100) NOT NULL, + CONSTRAINT [PK_MatterTeamHistoryActivityTypes] PRIMARY KEY CLUSTERED +( + [ActivityTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamRole] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamRole]( + [RoleId] [int] IDENTITY(1,1) NOT NULL, + [RoleDescription] [nvarchar](100) NOT NULL, + [IsAdmin] [bit] NOT NULL, + [IsDelegate] [bit] NOT NULL, + [WallRoleId] [int] NOT NULL, + [IsExceptedFromInactiveStatus] [bit] NOT NULL, + [IsRestrictedToGlobalAdmins] [bit] NOT NULL, + [CanRemoveUsers] [bit] NOT NULL, + [CanSubscribeUsers] [bit] NOT NULL, + CONSTRAINT [PK_MatterTeamRole] PRIMARY KEY CLUSTERED +( + [RoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[MatterTeamSubscriptionRequests] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[MatterTeamSubscriptionRequests]( + [RequestId] [int] IDENTITY(1,1) NOT NULL, + [MatterTeamId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [RequestDate] [datetime] NOT NULL, + [ResponseDate] [datetime] NULL, + [Status] [bit] NULL, + [Reason] [nvarchar](255) NULL, + [AdminEntityId] [int] NULL, + CONSTRAINT [PK_MatterTeamSubscriptionRequests] PRIMARY KEY CLUSTERED +( + [RequestId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[NotificationAttachments] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[NotificationAttachments]( + [NotificationId] [int] NOT NULL, + [AttachmentId] [int] NOT NULL, + CONSTRAINT [PK_NotificationAttachments] PRIMARY KEY CLUSTERED +( + [NotificationId] ASC, + [AttachmentId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[NotificationHistory] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[NotificationHistory]( + [NotificationHistoryId] [int] IDENTITY(1,1) NOT NULL, + [UserEntityId] [int] NOT NULL, + [NotificationId] [int] NOT NULL, + [NotificationSentDate] [datetime] NULL, + [AcknowledgmentId] [int] NULL, + CONSTRAINT [PK_NotificationHistory] PRIMARY KEY CLUSTERED +( + [NotificationHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[NotificationRoles] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[NotificationRoles]( + [NotificationRoleId] [int] NOT NULL, + [WallAccessTypeId] [int] NOT NULL, + [IsExceptedFromNotifications] [bit] NOT NULL, + [IsExceptedFromAcknowledgements] [bit] NOT NULL, + CONSTRAINT [PK_NotificationRoles] PRIMARY KEY CLUSTERED +( + [NotificationRoleId] ASC, + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Notifications] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Notifications]( + [NotificationId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [RecipientList] [nvarchar](1000) NOT NULL, + [NotificationText] [ntext] NULL, + [ForceNotification] [bit] NOT NULL, + [IsEnabled] [bit] NOT NULL, + [LastNotification] [datetime] NULL, + [IncludeAcknowledgments] [bit] NOT NULL, + [NotificationType] [nvarchar](50) NOT NULL, + [NextNotification] [datetime] NULL, + [TimeNumber] [int] NULL, + [TimeUnit] [nvarchar](30) NULL, + [Scope] [nvarchar](40) NOT NULL, + [CcList] [nvarchar](1000) NULL, + [BccList] [nvarchar](1000) NULL, + [From] [nvarchar](1000) NULL, + [NotificationName] [nvarchar](150) NOT NULL, + [Subject] [nvarchar](255) NULL, + [CreatorId] [int] NOT NULL, + [TriggerEvents] [smallint] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [IsDigest] [bit] NOT NULL, + CONSTRAINT [PK_Notifications] PRIMARY KEY CLUSTERED +( + [NotificationId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ObjectReleaseExceptions] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ObjectReleaseExceptions]( + [ObjectReleaseExceptionId] [int] IDENTITY(1,1) NOT NULL, + [ExtensionType] [nvarchar](64) NOT NULL, + [LibraryName] [nvarchar](255) NOT NULL, + [EntityId] [int] NOT NULL, + [ObjectType] [nvarchar](32) NOT NULL, + [ObjectId] [nvarchar](64) NOT NULL, + [ObjectName] [nvarchar](512) NULL, + [PrincipalName] [nvarchar](512) NOT NULL, + [PrincipalType] [nvarchar](32) NOT NULL, + [PrincipalId] [nvarchar](255) NOT NULL, + [Reason] [ntext] NULL, + [ExpirationDate] [datetime] NULL, + CONSTRAINT [PK_ObjectReleaseExceptions] PRIMARY KEY CLUSTERED +( + [ObjectReleaseExceptionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ObjectTemplate] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ObjectTemplate]( + [ObjectTemplateId] [int] IDENTITY(1,1) NOT NULL, + [EntityTypeId] [int] NOT NULL, + [Name] [nvarchar](150) NOT NULL, + [TemplateText] [ntext] NULL, + [CreatorId] [int] NOT NULL, + [SeparatorType] [int] NOT NULL, + [Separator] [nvarchar](100) NULL, + CONSTRAINT [PK_ObjectTemplate] PRIMARY KEY CLUSTERED +( + [ObjectTemplateId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[PermanentInsidersAccessHistory] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PermanentInsidersAccessHistory]( + [AccessHistoryId] [int] IDENTITY(1,1) NOT NULL, + [UserEntityId] [int] NOT NULL, + [ActivityType] [nvarchar](10) NOT NULL, + [ActivityDate] [datetime] NOT NULL, + [ActivityReason] [nvarchar](1000) NULL, + CONSTRAINT [PK_PermanentInsidersAccessHistory] PRIMARY KEY CLUSTERED +( + [AccessHistoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PolicyCategories] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PolicyCategories]( + [PolicyCategoryId] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](255) NOT NULL, + [DisplayName] [nvarchar](255) NOT NULL, + [PolicyCategoryGroupId] [int] NOT NULL, + CONSTRAINT [PK_PolicyCategories] PRIMARY KEY CLUSTERED +( + [PolicyCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[PolicyCategoryGroups] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[PolicyCategoryGroups]( + [PolicyCategoryGroupId] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_PolicyCategoryGroups] PRIMARY KEY CLUSTERED +( + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingAccessExplicit] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingAccessExplicit]( + [UserEntityId] [int] NOT NULL, + [ClientEntityId] [int] NOT NULL, + [MatterEntityId] [int] NULL, + [AllowingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingAccessImplicit] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingAccessImplicit]( + [UserEntityId] [int] NOT NULL, + [ClientEntityId] [int] NOT NULL, + [MatterEntityId] [int] NULL, + [ConflictingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingSharedResourcesExplicit] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingSharedResourcesExplicit]( + [AllowedUserEntityId] [int] NOT NULL, + [DeniedUserEntityId] [int] NOT NULL, + [ClientEntityID] [int] NOT NULL, + [MatterEntityID] [int] NULL, + [AllowingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL, + [Resource] [nvarchar](200) NOT NULL, + [ResourceType] [nvarchar](200) NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportConflictingSharedResourcesImplicit] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportConflictingSharedResourcesImplicit]( + [ConflictingUserEntityId] [int] NOT NULL, + [DeniedUserEntityId] [int] NOT NULL, + [ClientEntityID] [int] NOT NULL, + [MatterEntityID] [int] NULL, + [ConflictingWallId] [int] NOT NULL, + [DenyingWallId] [int] NOT NULL, + [AddedDate] [datetime] NOT NULL, + [Resource] [nvarchar](200) NOT NULL, + [ResourceType] [nvarchar](200) NOT NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportFields] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportFields]( + [ReportFieldId] [int] NOT NULL, + [FieldName] [nvarchar](128) NULL, + [ReportTypeId] [int] NOT NULL, + [FieldType] [nvarchar](255) NOT NULL, + [Description] [nvarchar](255) NOT NULL, + [TableName] [nvarchar](255) NOT NULL, + [ColumnName] [nvarchar](255) NULL, + [IsQueryable] [bit] NOT NULL, + [IsSearchable] [bit] NOT NULL, + [IsDefault] [bit] NOT NULL, + [OrderId] [int] NOT NULL, + CONSTRAINT [PK_ReportFields] PRIMARY KEY CLUSTERED +( + [ReportFieldId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Reports] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Reports]( + [ReportId] [int] IDENTITY(1,1) NOT NULL, + [UserId] [int] NOT NULL, + [ReportTypeId] [int] NOT NULL, + [Name] [nvarchar](100) NOT NULL, + [Created] [datetime] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [ReportXml] [ntext] NULL, + CONSTRAINT [PK_Reports] PRIMARY KEY CLUSTERED +( + [ReportId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportSchedules] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportSchedules]( + [ReportScheduleID] [int] IDENTITY(1,1) NOT NULL, + [ReportID] [int] NOT NULL, + [Subject] [nvarchar](1000) NULL, + [RecipientList] [nvarchar](1000) NOT NULL, + [RecipientAppUsers] [bit] NOT NULL, + [FrequencyType] [nvarchar](50) NOT NULL, + [FrequencyInterval] [int] NULL, + [FrequencyUnit] [nvarchar](50) NULL, + [SkipIfNoData] [bit] NOT NULL, + [IsEnabled] [bit] NOT NULL, + [NextTimeDue] [datetime] NULL, + [LastTimeRun] [datetime] NULL, + CONSTRAINT [PK_ReportSchedules] PRIMARY KEY CLUSTERED +( + [ReportScheduleID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportsConflictingLatestUpdateDate] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportsConflictingLatestUpdateDate]( + [ReportTypeId] [int] NOT NULL, + [LatestUpdateDate] [datetime] NOT NULL, + [UpdateStartTime] [datetime] NULL +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ReportTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ReportTypes]( + [ReportTypeId] [int] IDENTITY(1,1) NOT NULL, + [ReportTypeName] [nvarchar](100) NOT NULL, + [ReportTypeDescription] [nvarchar](255) NULL, + [ParentReportTypeId] [int] NULL, + [PolicyCategoryGroupId] [int] NULL, + CONSTRAINT [PK_ReportTypes] PRIMARY KEY CLUSTERED +( + [ReportTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Repositories] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Repositories]( + [RepositoryId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryTypeId] [int] NOT NULL, + [RepositoryName] [nvarchar](255) NOT NULL, + [RepositoryRemoteLabel] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_Repositories] PRIMARY KEY CLUSTERED +( + [RepositoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[RepositoryTypes] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[RepositoryTypes]( + [RepositoryTypeId] [int] IDENTITY(1,1) NOT NULL, + [RepositoryType] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_RepositoryTypes] PRIMARY KEY CLUSTERED +( + [RepositoryTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[ScheduledSecurityRepairStatus] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ScheduledSecurityRepairStatus]( + [ScheduledSecurityRepairStatusId] [int] IDENTITY(1,1) NOT NULL, + [ExtensionType] [nvarchar](64) NOT NULL, + [LibraryName] [nvarchar](255) NOT NULL, + [ObjectType] [nvarchar](32) NOT NULL, + [LastRepairTime] [datetime] NULL, + [Status] [nvarchar](32) NOT NULL, + [LastRepairId] [nvarchar](64) NULL, + CONSTRAINT [PK_ScheduledSecurityRepairStatus] PRIMARY KEY CLUSTERED +( + [ExtensionType] ASC, + [LibraryName] ASC, + [ObjectType] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_BLOB_TRIGGERS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_BLOB_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [BLOB_DATA] [image] NULL +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_CALENDARS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_CALENDARS]( + [CALENDAR_NAME] [varchar](200) NOT NULL, + [CALENDAR] [image] NOT NULL, + CONSTRAINT [PK_SCHEDULER_CALENDARS] PRIMARY KEY CLUSTERED +( + [CALENDAR_NAME] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_CRON_TRIGGERS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_CRON_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [CRON_EXPRESSION] [varchar](120) NOT NULL, + [TIME_ZONE_ID] [varchar](80) NULL, + CONSTRAINT [PK_SCHEDULER_CRON_TRIGGERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_FIRED_TRIGGERS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_FIRED_TRIGGERS]( + [ENTRY_ID] [varchar](95) NOT NULL, + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [IS_VOLATILE] [varchar](1) NOT NULL, + [INSTANCE_NAME] [varchar](200) NOT NULL, + [FIRED_TIME] [bigint] NOT NULL, + [PRIORITY] [int] NOT NULL, + [STATE] [varchar](16) NOT NULL, + [JOB_NAME] [varchar](200) NULL, + [JOB_GROUP] [varchar](200) NULL, + [IS_STATEFUL] [varchar](1) NULL, + [REQUESTS_RECOVERY] [varchar](1) NULL, + CONSTRAINT [PK_SCHEDULER_FIRED_TRIGGERS] PRIMARY KEY CLUSTERED +( + [ENTRY_ID] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_JOB_DETAILS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_JOB_DETAILS]( + [JOB_NAME] [varchar](200) NOT NULL, + [JOB_GROUP] [varchar](200) NOT NULL, + [DESCRIPTION] [varchar](250) NULL, + [JOB_CLASS_NAME] [varchar](250) NOT NULL, + [IS_DURABLE] [varchar](1) NOT NULL, + [IS_VOLATILE] [varchar](1) NOT NULL, + [IS_STATEFUL] [varchar](1) NOT NULL, + [REQUESTS_RECOVERY] [varchar](1) NOT NULL, + [JOB_DATA] [image] NULL, + CONSTRAINT [PK_SCHEDULER_JOB_DETAILS] PRIMARY KEY CLUSTERED +( + [JOB_NAME] ASC, + [JOB_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_JOB_LISTENERS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_JOB_LISTENERS]( + [JOB_NAME] [varchar](200) NOT NULL, + [JOB_GROUP] [varchar](200) NOT NULL, + [JOB_LISTENER] [varchar](200) NOT NULL, + CONSTRAINT [PK_SCHEDULER_JOB_LISTENERS] PRIMARY KEY CLUSTERED +( + [JOB_NAME] ASC, + [JOB_GROUP] ASC, + [JOB_LISTENER] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_LOCKS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_LOCKS]( + [LOCK_NAME] [varchar](40) NOT NULL, + CONSTRAINT [PK_SCHEDULER_LOCKS] PRIMARY KEY CLUSTERED +( + [LOCK_NAME] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_PAUSED_TRIGGER_GRPS] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_PAUSED_TRIGGER_GRPS]( + [TRIGGER_GROUP] [varchar](200) NOT NULL, + CONSTRAINT [PK_SCHEDULER_PAUSED_TRIGGER_GRPS] PRIMARY KEY CLUSTERED +( + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_SCHEDULER_STATE] Script Date: 2/6/2018 1:34:17 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_SCHEDULER_STATE]( + [INSTANCE_NAME] [varchar](200) NOT NULL, + [LAST_CHECKIN_TIME] [bigint] NOT NULL, + [CHECKIN_INTERVAL] [bigint] NOT NULL, + CONSTRAINT [PK_SCHEDULER_SCHEDULER_STATE] PRIMARY KEY CLUSTERED +( + [INSTANCE_NAME] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_SIMPLE_TRIGGERS] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_SIMPLE_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [REPEAT_COUNT] [bigint] NOT NULL, + [REPEAT_INTERVAL] [bigint] NOT NULL, + [TIMES_TRIGGERED] [bigint] NOT NULL, + CONSTRAINT [PK_SCHEDULER_SIMPLE_TRIGGERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_TRIGGER_LISTENERS] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_TRIGGER_LISTENERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [TRIGGER_LISTENER] [varchar](200) NOT NULL, + CONSTRAINT [PK_SCHEDULER_TRIGGER_LISTENERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC, + [TRIGGER_LISTENER] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SCHEDULER_TRIGGERS] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SCHEDULER_TRIGGERS]( + [TRIGGER_NAME] [varchar](200) NOT NULL, + [TRIGGER_GROUP] [varchar](200) NOT NULL, + [JOB_NAME] [varchar](200) NOT NULL, + [JOB_GROUP] [varchar](200) NOT NULL, + [IS_VOLATILE] [varchar](1) NOT NULL, + [DESCRIPTION] [varchar](250) NULL, + [NEXT_FIRE_TIME] [bigint] NULL, + [PREV_FIRE_TIME] [bigint] NULL, + [PRIORITY] [int] NULL, + [TRIGGER_STATE] [varchar](16) NOT NULL, + [TRIGGER_TYPE] [varchar](8) NOT NULL, + [START_TIME] [bigint] NOT NULL, + [END_TIME] [bigint] NULL, + [CALENDAR_NAME] [varchar](200) NULL, + [MISFIRE_INSTR] [smallint] NULL, + [JOB_DATA] [image] NULL, + CONSTRAINT [PK_SCHEDULER_TRIGGERS] PRIMARY KEY CLUSTERED +( + [TRIGGER_NAME] ASC, + [TRIGGER_GROUP] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[ScreeningLawyerKeyMap] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[ScreeningLawyerKeyMap]( + [EntityId] [int] NOT NULL, + [WallId] [int] NOT NULL, + CONSTRAINT [PK_ScreeningLawyerKeyMap] PRIMARY KEY CLUSTERED +( + [EntityId] ASC, + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[SummaryDetails] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[SummaryDetails]( + [SummaryDetailId] [int] IDENTITY(1,1) NOT NULL, + [TrackerExecutionId] [int] NOT NULL, + [UserName] [nvarchar](255) NULL, + [UserEntityId] [int] NOT NULL, + [Activity] [nvarchar](1000) NOT NULL, + [Repository] [nvarchar](255) NOT NULL, + [ActivityCount] [int] NOT NULL, + CONSTRAINT [PK_SummaryDetails] PRIMARY KEY CLUSTERED +( + [SummaryDetailId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerActivities] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerActivities]( + [TrackerId] [int] NOT NULL, + [ActivityId] [int] NOT NULL, + CONSTRAINT [PK_TrackerActivities] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC, + [ActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerCategories] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerCategories]( + [TrackerCategoryId] [int] NOT NULL, + [Name] [nvarchar](255) NOT NULL, + CONSTRAINT [PK_TrackerCategories] PRIMARY KEY CLUSTERED +( + [TrackerCategoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerClientsAndMatters] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerClientsAndMatters]( + [TrackerId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [IsInclude] [bit] NOT NULL, + [TrackerSideId] [int] NOT NULL, + CONSTRAINT [PK_TrackerClientsAndMatters] PRIMARY KEY CLUSTERED +( + [TrackerSideId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutionActivities] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutionActivities]( + [TrackerExecutionId] [int] NOT NULL, + [ActivityId] [int] NOT NULL, + CONSTRAINT [PK_TrackerExecutionActivities] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC, + [ActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutionClientsAndMatters] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutionClientsAndMatters]( + [TrackerExecutionId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [IsInclude] [bit] NOT NULL, + CONSTRAINT [PK_TrackerExecutionClientsAndMatters] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutionLibraries] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutionLibraries]( + [TrackerExecutionId] [int] NOT NULL, + [LibraryId] [int] NOT NULL, + CONSTRAINT [PK_TrackerExecutionLibraries] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC, + [LibraryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerExecutions] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerExecutions]( + [TrackerExecutionId] [int] IDENTITY(1,1) NOT NULL, + [TrackerId] [int] NOT NULL, + [TrackerTypeId] [int] NOT NULL, + [LinkedPolicyId] [int] NULL, + [IntervalNumber] [int] NOT NULL, + [IntervalUnit] [nvarchar](50) NOT NULL, + [TrackerLimit] [decimal](8, 2) NULL, + [Created] [datetime] NOT NULL, + [IntervalEndDate] [datetime] NOT NULL, + [IntervalStartDate] [datetime] NOT NULL, + [OnlyPrivate] [bit] NOT NULL, + [OnlyDidNotAuthor] [bit] NOT NULL, + [DistinctDocuments] [bit] NOT NULL, + [GeneratesAlerts] [bit] NOT NULL, + [TrackerSideId] [int] NULL, + [IsCompleted] [bit] NOT NULL, + [TrackActivityCategories] [bit] NOT NULL, + [ThresholdType] [int] NOT NULL, + CONSTRAINT [PK_TrackerExecutions] PRIMARY KEY CLUSTERED +( + [TrackerExecutionId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerRepositories] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerRepositories]( + [TrackerId] [int] NOT NULL, + [RepositoryId] [int] NOT NULL, + CONSTRAINT [PK_ThresholdRepositories] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC, + [RepositoryId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Trackers] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Trackers]( + [TrackerId] [int] IDENTITY(1,1) NOT NULL, + [TrackerName] [nvarchar](255) NOT NULL, + [TrackerDesc] [nvarchar](1000) NULL, + [IsEnabled] [bit] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [TrackerTypeId] [int] NOT NULL, + [Limit] [decimal](8, 2) NULL, + [StartDate] [datetime] NOT NULL, + [IntervalNumber] [int] NOT NULL, + [IntervalUnit] [nvarchar](50) NOT NULL, + [Notify] [nvarchar](1000) NULL, + [NotifyAppUsers] [bit] NOT NULL, + [DeliverIfNoAlert] [bit] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [NextTimeDue] [datetime] NOT NULL, + [CreatorId] [int] NOT NULL, + [OnlyPrivate] [bit] NOT NULL, + [OnlyDidNotAuthor] [bit] NOT NULL, + [DistinctDocuments] [bit] NOT NULL, + [ModifierId] [int] NOT NULL, + [GeneratesAlerts] [bit] NOT NULL, + [LinkedPolicyId] [int] NULL, + [TrackActivityCategories] [bit] NOT NULL, + [ThresholdType] [int] NOT NULL, + CONSTRAINT [PK_Thresholds] PRIMARY KEY CLUSTERED +( + [TrackerId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerSides] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerSides]( + [TrackerSideId] [int] IDENTITY(1,1) NOT NULL, + [TrackerId] [int] NOT NULL, + [WallSideId] [int] NULL, + [TrackerSideName] [nvarchar](250) NOT NULL, + [IsDeleted] [bit] NOT NULL, + CONSTRAINT [PK_TrackerSides] PRIMARY KEY CLUSTERED +( + [TrackerSideId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerTypes] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerTypes]( + [TrackerTypeId] [int] IDENTITY(1,1) NOT NULL, + [TrackerType] [nvarchar](255) NOT NULL, + [TrackerCategoryId] [int] NOT NULL, + [Icon] [nvarchar](255) NULL, + [Description] [ntext] NULL, + [IsVisible] [bit] NOT NULL, + CONSTRAINT [PK_TrackerTypes] PRIMARY KEY CLUSTERED +( + [TrackerTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[TrackerWatchList] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[TrackerWatchList]( + [TrackerId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [IsInclude] [bit] NOT NULL, + [TrackerSideId] [int] NOT NULL, + CONSTRAINT [PK_TrackerWatchList] PRIMARY KEY CLUSTERED +( + [TrackerSideId] ASC, + [UserEntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[UserActivityCounts] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[UserActivityCounts]( + [UserActivityId] [int] IDENTITY(1,1) NOT NULL, + [TrackerExecutionId] [int] NOT NULL, + [UserEntityId] [int] NOT NULL, + [ActivityCount] [int] NOT NULL, + CONSTRAINT [PK_UserActivityCounts] PRIMARY KEY CLUSTERED +( + [UserActivityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallAccessTypes] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallAccessTypes]( + [WallAccessTypeId] [int] IDENTITY(1,1) NOT NULL, + [WallAccessType] [nvarchar](50) NOT NULL, + [SelfMaintaining] [nvarchar](64) NOT NULL, + [RequireAckForAccess] [nvarchar](64) NOT NULL, + [OrderId] [int] NOT NULL, + [Icon] [nvarchar](200) NULL, + [Description] [ntext] NULL, + [SideConfig] [nvarchar](4000) NULL, + [AutoAddMatterTeams] [nvarchar](64) NOT NULL, + [RelationshipPairing] [nvarchar](64) NOT NULL, + [PolicyCategoryId] [int] NOT NULL, + [DefaultSelfMaintainingIntervalType] [nvarchar](50) NULL, + CONSTRAINT [PK_WallAccessTypes] PRIMARY KEY CLUSTERED +( + [WallAccessTypeId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallCustomComboValues] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallCustomComboValues]( + [Field] [nvarchar](32) NOT NULL, + [Value] [nvarchar](200) NOT NULL, + [PolicyCategoryGroupId] [int] NOT NULL, + CONSTRAINT [PK_WallCustomComboValues] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [Value] ASC, + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallCustomFieldConfig] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallCustomFieldConfig]( + [Field] [nvarchar](32) NOT NULL, + [DisplayName] [nvarchar](64) NOT NULL, + [IsRequired] [bit] NOT NULL, + [Type] [nvarchar](32) NOT NULL, + [Description] [nvarchar](100) NOT NULL, + [PolicyCategoryGroupId] [int] NOT NULL, + CONSTRAINT [PK_WallCustomFieldConfig] PRIMARY KEY CLUSTERED +( + [Field] ASC, + [PolicyCategoryGroupId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallExceptions] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallExceptions]( + [WallId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [CreatorId] [int] NOT NULL, + [DateAdded] [datetime] NOT NULL, + [Notes] [ntext] NULL, + CONSTRAINT [PK_WallExceptions] PRIMARY KEY CLUSTERED +( + [WallId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallRoles] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallRoles]( + [WallRoleId] [int] IDENTITY(1,1) NOT NULL, + [WallRoleName] [nvarchar](100) NOT NULL, + [WallRoleXML] [ntext] NULL, + CONSTRAINT [PK_WallRoles] PRIMARY KEY CLUSTERED +( + [WallRoleId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[Walls] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Walls]( + [WallId] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](250) NULL, + [WallAccessTypeId] [int] NOT NULL, + [Notes] [ntext] NULL, + [CreatorId] [int] NOT NULL, + [Created] [datetime] NOT NULL, + [Modified] [datetime] NOT NULL, + [IsEnabled] [bit] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [ExpirationDate] [datetime] NULL, + [IsSelfMaintaining] [bit] NOT NULL, + [IsRequireAcknowledgement] [bit] NOT NULL, + [CustomField1] [nvarchar](200) NULL, + [CustomField2] [nvarchar](200) NULL, + [CustomField3] [nvarchar](200) NULL, + [CustomField4] [nvarchar](200) NULL, + [CustomField5] [nvarchar](200) NULL, + [CustomField6] [nvarchar](200) NULL, + [CustomField7] [nvarchar](200) NULL, + [CustomField8] [nvarchar](200) NULL, + [CustomField9] [nvarchar](200) NULL, + [CustomField10] [nvarchar](200) NULL, + [CustomDate1] [datetime] NULL, + [CustomDate2] [datetime] NULL, + [CustomDate3] [datetime] NULL, + [CustomDate4] [datetime] NULL, + [CustomDate5] [datetime] NULL, + [SelfMaintainingPeriod] [int] NULL, + [SelfMaintainingPeriodUnit] [nvarchar](32) NULL, + [SelfMaintainingMinHours] [int] NULL, + [EffectiveDate] [datetime] NULL, + [ModifierId] [int] NULL, + [SecurityStatus] [nvarchar](32) NULL, + [SelfMaintainingPeriodStart] [datetime] NULL, + [SelfMaintainingPeriodEnd] [datetime] NULL, + [SecurityStartDate] [datetime] NULL, + [SecurityEndDate] [datetime] NULL, + [IsRelationshipPaired] [bit] NOT NULL, + [ExtLegalHoldID] [varchar](20) NULL, + [FoundationalGroupId] [nvarchar](20) NULL, + CONSTRAINT [PK_Walls] PRIMARY KEY CLUSTERED +( + [WallId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallSecurityStatus] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallSecurityStatus]( + [WallSecurityStatusId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [ExtensionType] [nvarchar](64) NOT NULL, + [LibraryName] [nvarchar](255) NOT NULL, + [EntityId] [int] NOT NULL, + [Status] [nvarchar](32) NOT NULL, + [SecuredObjectCount] [int] NOT NULL, + [TotalObjectCount] [int] NOT NULL, + [Errors] [ntext] NULL, + [LastRecalculationDate] [datetime] NULL, + CONSTRAINT [PK_WallSecurityStatus] PRIMARY KEY CLUSTERED +( + [WallId] ASC, + [ExtensionType] ASC, + [LibraryName] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallSideEntities] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallSideEntities]( + [WallSideId] [int] NOT NULL, + [EntityId] [int] NOT NULL, + [WallId] [int] NOT NULL, + [DateAdded] [datetime] NULL, + [WasAddedBySelfMaintaining] [bit] NULL, + [WallRoleId] [int] NULL, + CONSTRAINT [PK_WallSideEntities] PRIMARY KEY CLUSTERED +( + [WallSideId] ASC, + [EntityId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WallSides] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WallSides]( + [WallSideId] [int] IDENTITY(1,1) NOT NULL, + [WallId] [int] NOT NULL, + [IsDeleted] [bit] NOT NULL, + [WallSideName] [nvarchar](250) NOT NULL, + CONSTRAINT [PK_WallSides] PRIMARY KEY CLUSTERED +( + [WallSideId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[Widget] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[Widget]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [Name] [nvarchar](50) NOT NULL, + [Description] [nvarchar](250) NULL, + [Url] [nvarchar](2083) NOT NULL, + [OrderNumber] [int] NOT NULL, + [Editable] [bit] NOT NULL, + [SupportRedirection] [bit] NOT NULL, + CONSTRAINT [PK_Widget] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WidgetInstance] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WidgetInstance]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [WidgetZoneId] [int] NOT NULL, + [WidgetId] [int] NOT NULL, + [OrderNumber] [int] NOT NULL, + [Expanded] [bit] NOT NULL, + [Maximized] [bit] NOT NULL, + [Resized] [bit] NOT NULL, + [Width] [int] NOT NULL, + [Height] [int] NOT NULL, + [Title] [nvarchar](250) NOT NULL, + [WidgetProperties] [nvarchar](4000) NOT NULL, + CONSTRAINT [PK_WidgetZoneWidgets] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WidgetZone] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WidgetZone]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [WidgetZoneTypeId] [int] NOT NULL, + [UserId] [int] NOT NULL, + [OrderNumber] [int] NOT NULL, + [Title] [nvarchar](250) NULL, + CONSTRAINT [PK_WidgetZone] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO +/****** Object: Table [dbo].[WidgetZoneType] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +CREATE TABLE [dbo].[WidgetZoneType]( + [Id] [int] IDENTITY(1,1) NOT NULL, + [WidgetZoneType] [nvarchar](50) NOT NULL, + [WidgetZoneTypeDescription] [nvarchar](250) NULL, + CONSTRAINT [PK_WidgetZoneType] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] +GO + +/****** Object: View [dbo].[ConfigRestricted] Script Date: 2/6/2018 1:34:18 PM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO + + CREATE VIEW [dbo].[ConfigRestricted] AS + SELECT ConfigId, ConfigVariable, ConfigValue1, ConfigValue2, Category, IsVisible + FROM [Config] + WHERE (ConfigVariable NOT LIKE '%Password') + AND (ConfigVariable NOT LIKE '%Username') + AND (ConfigVariable NOT LIKE '%Server') + AND (ConfigVariable NOT LIKE '%Name') + AND (ConfigVariable NOT LIKE '%Domain') + AND (ConfigVariable NOT LIKE '%Url') + AND (ConfigVariable NOT LIKE '%LibraryXML') + AND (ConfigVariable NOT LIKE '%LicenseKey') + AND (ConfigVariable NOT LIKE '%ConnectionString') + AND (ConfigVariable NOT LIKE '%PowerUserGroupsXML') + AND (ConfigVariable NOT LIKE '%RootDirectoryXML') + AND (ConfigVariable NOT LIKE '%ConnectionString') + AND (ConfigVariable NOT LIKE 'Mail::SMTPHost') + AND (ConfigVariable NOT LIKE '%PublicGroupDN') + AND (ConfigVariable NOT LIKE '%AdminUsersXML') + AND (ConfigVariable NOT LIKE 'MessageBus::ReceiverXML') + AND (ConfigVariable NOT LIKE '%ApiKey') + AND (ConfigVariable NOT LIKE '%AuthToken') +GO