symfony propel:buildでのinsertエラー

symfony1.4とmysql5.1の環境でsymfony propel:build-allをしたらエラーで引っかかった

SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corres                                                 ponds to your MySQL server version for the right syntax to use near '

data/sql/lib.model.schema.sqlを見てみる

`delete` TINYINT(1) default NOT NULL,

defaultの値がない?


schema.ymlで

defaultValue: ''

としたところが一部クオートがなくなっているようだ

大丈夫なところもあるのに・・・


lib.model.schema.sqlを書き換えて終わり