MSSQL create script

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
2/11/2005 6:03:37 AM
Gravatar
Total Posts 2

MSSQL create script

In the vs.net package I installed today 2/10/05 the create table script for UserRoles seems to be missing the ID column.

I compared it to the mysql script.  In MSSQL_CreateTables.sql line ~358

CREATE TABLE [dbo].[mp_UserRoles] (
    [ID] [int] IDENTITY (1,1) NOT NULL,
    [UserID] [int] NOT NULL ,
    [RoleID] [int] NOT NULL
) ON [PRIMARY]
GO

This caused the CreateData.sql script to fail

Dave
2/11/2005 1:08:29 AM
Gravatar
Total Posts 18439

Re: MSSQL create script

Thanks Dave, I'll be sure and fix that before the next release.
You must sign in to post in the forums. This thread is closed to new posts.