Default charset in Typo3 ext_tables.sql -


i use typo3 sql parser creating tables. want create tables default charset, if set default charset in query:

create table `table1` ( `col1` varchar(64) not null default '', `col2` varchar(64) not null default '', `col3` text not null, primary key (`col1`,`col2`) ) engine=innodb default charset=utf8; 

parser returns

create table table1 ( col1 varchar(64) not null default '', col2 varchar(64) not null default '', col3 text not null, primary key (col1,col2) ) engine=innodb; 

how set default charset?

i guess not implemented in typo3 sql parser. imho there no need to. should use default charset set db. should utf8 anyway, since typo3 not support other charsets anymore (afaik).


Comments