Hello,
in the automatic Upradescript, i became this screen : ALTER TABLE `Profiles` DROP INDEX `NickName_2`;: Can't DROP 'NickName_2'; check that column/key exists
what is wrong?
Thanks
André
Hello,
in the automatic Upradescript, i became this screen : ALTER TABLE `Profiles` DROP INDEX `NickName_2`;: Can't DROP 'NickName_2'; check that column/key exists
what is wrong?
Thanks André |
For some reason, you have no 'NickName_2' index in `Profiles` table. Try to add this index manually: ALTER TABLE `Profiles` ADD FULLTEXT KEY `NickName_2` (`NickName`,`FullName`,`FirstName`,`LastName`,`City`,`DescriptionMe`,`Tags`); Then run upgrade script again.
Rules → http://www.boonex.com/terms |