Dev 1.8 Beta Upgrade From 1.8 Alpha3 Error

Upgrading from Alpha3 to Beta I ran into this:

Not exactly sure what to do about that yet.

I do see LkDisplayDGID that is set to unique. I am not sure if the column needs a name change or what the issue is.

Please let me know.

UPDATE: Since the table had very little data in it, I copied down the data, and then dropped the table. Looking at 125.json and structure.sql, I decided to recreate the table with the following:

CREATE TABLE IF NOT EXISTS `lkdisplaydg` (
  `LkDisplayDGID` int(11) NOT NULL AUTO_INCREMENT,
  `DisplayGroupID` int(11) NOT NULL,
  `DisplayID` int(11) NOT NULL,
  PRIMARY KEY (`LkDisplayDGID`),
  KEY `DisplayGroupID` (`DisplayGroupID`),
  KEY `DisplayID` (`DisplayID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

I left out

UNIQUE KEYDisplayGroupDisplayId (DisplayGroupID,DisplayID),

The upgrade proceeded to the end. Will this pose a problem?, if so should we just reload from scratch?
I repopulated the table, and when I logged in I saw all my screens.

But I did also get this:
There is a problem with this installation. "install.php" should be deleted. - a few seconds ago

Its a really annoying issue that I can’t seem to get right :blush: the 1.8.0-rc will have an option to skip certain steps on the upgrade.

What you’ve done is fine though.

You can delete web/install/index.php, the upgrade should have done that but may not have had permission.