I'm writing some Database queries with Propel(symfony), but propel always add some query! For example :
SELECT COUNT(*) FROM table WHERE (table.start>='2012-06-01 00:00:00'
AND table.end<='2012-06-30 00:00:00') AND table.deleteat IS NOT NULL
The Propel always add the : AND table.deleteat IS NULL
Can i remove that?