You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 9, 2019. It is now read-only.
I have done multiple installs of this product using the built in /Install/Install.aspx and have had it run successfully. Then I go in and login with the default admin account and go to create a user and get 3 SQL errors about missing stored procedures and missing tables. I had to add 1 proc and 2 tables.
CREATE PROCEDURE [dbo].[BugNet_UserCustomField_GetCustomFields]
AS
CREATE TABLE [dbo].[BugNet_UserCustomFieldTypes] (
[CustomFieldTypeId] INT IDENTITY (1, 1) NOT NULL,
[CustomFieldTypeName] NVARCHAR (50) NOT NULL,
CONSTRAINT [PK_BugNet_UserCustomFieldTypes] PRIMARY KEY CLUSTERED ([CustomFieldTypeId] ASC)
);
CREATE TABLE [dbo].[BugNet_UserCustomFields]([CustomFieldId] INT IDENTITY %281, 1%29 NOT NULL,
[CustomFieldName] NVARCHAR %2850%29 NOT NULL,
[CustomFieldRequired] BIT NOT NULL,
[CustomFieldDataType] INT NOT NULL,
[CustomFieldTypeId] INT NOT NULL,
CONSTRAINT [PK_BugNet_UserCustomFields] PRIMARY KEY CLUSTERED %28[CustomFieldId] ASC%29,
CONSTRAINT [FK_BugNet_UserCustomFields_BugNet_UserCustomFieldType] FOREIGN KEY %28[CustomFieldTypeId]%29 REFERENCES [dbo].[BugNet_UserCustomFieldTypes] %28[CustomFieldTypeId]%29 ON DELETE CASCADE);
The text was updated successfully, but these errors were encountered:
I have done multiple installs of this product using the built in /Install/Install.aspx and have had it run successfully. Then I go in and login with the default admin account and go to create a user and get 3 SQL errors about missing stored procedures and missing tables. I had to add 1 proc and 2 tables.
CREATE PROCEDURE [dbo].[BugNet_UserCustomField_GetCustomFields]
AS
SELECT
Fields.CustomFieldId,
Fields.CustomFieldName,
Fields.CustomFieldDataType,
Fields.CustomFieldRequired,
'' CustomFieldValue,
Fields.CustomFieldTypeId
FROM
BugNet_UserCustomFields Fields
);
CREATE TABLE [dbo].[BugNet_UserCustomFields]([CustomFieldId] INT IDENTITY %281, 1%29 NOT NULL,
[CustomFieldName] NVARCHAR %2850%29 NOT NULL,
[CustomFieldRequired] BIT NOT NULL,
[CustomFieldDataType] INT NOT NULL,
[CustomFieldTypeId] INT NOT NULL,
CONSTRAINT [PK_BugNet_UserCustomFields] PRIMARY KEY CLUSTERED %28[CustomFieldId] ASC%29,
CONSTRAINT [FK_BugNet_UserCustomFields_BugNet_UserCustomFieldType] FOREIGN KEY %28[CustomFieldTypeId]%29 REFERENCES [dbo].[BugNet_UserCustomFieldTypes] %28[CustomFieldTypeId]%29 ON DELETE CASCADE);
The text was updated successfully, but these errors were encountered: