I copied some SQL upgrade script code:
I now get errors for "Invalid object name 'BugNet_P1_CFV'", but if I got to /Administration/Projects/ProjectList.aspx and press the "Generate Custom Field Views" link twice (first time, if fails) it now seems to work.
Rough upgrade, but it now seems to work. I will test some more and write here again if I find anything else.
-- 1.1.213.0
ALTER TABLE [dbo].[BugNet_UserProfiles]
ADD [ReceiveEmailNotifications] BIT DEFAULT 1 NOT NULL;
GO
-- 1.5.258.0
ALTER TABLE [dbo].[BugNet_UserProfiles]
ADD [PasswordVerificationToken] NVARCHAR (128) NULL,
[PasswordVerificationTokenExpirationDate] DATETIME NULL;
GO
and after that, I could go to /install/install.aspx and the upgrade process was successful.I now get errors for "Invalid object name 'BugNet_P1_CFV'", but if I got to /Administration/Projects/ProjectList.aspx and press the "Generate Custom Field Views" link twice (first time, if fails) it now seems to work.
Rough upgrade, but it now seems to work. I will test some more and write here again if I find anything else.