Attributes like PrimaryKey? are not converted from yml file to xml file.
Index: lib/plugins/sfPropelPlugin/lib/propel/sfPropelDatabaseSchema.class.php
===================================================================
--- lib/plugins/sfPropelPlugin/lib/propel/sfPropelDatabaseSchema.class.php (Revision 7905)
+++ lib/plugins/sfPropelPlugin/lib/propel/sfPropelDatabaseSchema.class.php (Arbeitskopie)
@@ -616,7 +616,7 @@
$booleans = array('required', 'primaryKey', 'autoincrement', 'autoIncrement', 'noXsd', 'isI18N', 'isCulture');
if (in_array($key, $booleans))
{
- return $value == 1 ? 'true' : 'false';
+ return ((boolean)$value == true) ? 'true' : 'false';
}
else
{