Bug in upgrade script 0803 -> 086

Project:ProjectPier
Version:0.8.6-stable
Component:Miscellaneous
Category:bug report
Priority:normal
Assigned:phpfreak
Status:closed - won't fix/other
Description

Therre is a bug in script :
public/upgrade/templates/db_migration/0803-086.php

there si a missing dot-comma (;) on line 41

ALTER TABLE `##?php echo $table_prefix ?####users` DROP INDEX `email` , ADD INDEX `email` ( `email` ) ===> ; >=====

Thanks

#1
Assigned to:Visitor» phpfreak
Status:new» closed - won't fix/other

Confirmed.

Please replace line 41 with this one:

ALTER TABLE `<?php echo $table_prefix ?>users` DROP INDEX `email` , ADD INDEX `email` ( `email` );
#2