Project

General

Profile

Bug #86897

Updated by Alexander Opitz over 5 years ago

I've an extension which have extends tt_content table inside ext_tables.sql with following lines. 

 <pre> 
 # 
 # Table structure for table 'tt_content' 
 # 
 CREATE TABLE tt_content ( 
     tx_templavoilaplus_ds tinytext, 
     tx_templavoilaplus_to int(11) DEFAULT '0' NOT NULL, 
     tx_templavoilaplus_flex mediumtext, 
     tx_templavoilaplus_pito int(11) DEFAULT '0' NOT NULL 
 ); 
 </pre> 

 The field "tx_templavoilaplus_ds" is completely ignored, all other fields are fine. This happens while installing extension but also inside the database analyser. 
 Ignoring only for adding field, remove works as expected.

Back