Bug #17584
closed4.2trunk: ALTER TABLE fe_users DROP KEY pid
0%
Description
This is with current SVN trunk. I have made an update starting from TYPO3 4.1.
The install tool suggests me to drop the pid of the fe_users table. This is a bug.
Drop fields (really!)
ALTER TABLE fe_users DROP KEY pid;
ALTER TABLE sys_products_orders DROP KEY uid;
(issue imported from #M6273)
Updated by Franz Holzinger about 17 years ago
If you have tt_products installed, then the install tool also suggest this.
ALTER TABLE sys_products_orders DROP KEY uid;
This is a bug.
Updated by Franz Holzinger about 17 years ago
A very similar bug in the Extension Manager:
I have imported the whole database from another site. The tables are all there containing all contents. But the EM says:
ALTER TABLE static_countries ADD UNIQUE uid (uid);
ALTER TABLE static_country_zones ADD UNIQUE uid (uid);
ALTER TABLE static_currencies ADD KEY parent (pid);
ALTER TABLE static_languages ADD KEY parent (pid);
ALTER TABLE static_taxes ADD KEY parent (pid);
ALTER TABLE tx_staticinfotables_hotlist ADD KEY uid_local (uid_local);
Updated by Christian Kuhn about 15 years ago
Resolved, no change required:
- All proposed changes are key indexes only, no dropped fields.
- In case of fe_users there's a standard key in 4.2 on pid/username named parent.