From c04664beb24f8ac8acd0be4e9dc3eff2e6764ebd Mon Sep 17 00:00:00 2001 From: William DURAND Date: Tue, 30 Aug 2011 17:43:01 +0200 Subject: [PATCH] [command] Fixed build-sql --- Command/BuildSqlCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/BuildSqlCommand.php b/Command/BuildSqlCommand.php index 53592bc3..dc9aafc9 100644 --- a/Command/BuildSqlCommand.php +++ b/Command/BuildSqlCommand.php @@ -48,7 +48,7 @@ protected function execute(InputInterface $input, OutputInterface $output) $this->additionalPhingArgs[] = 'verbose'; } - if (true === $this->callPhing('sql', array('propel.packageObjectModel' => false))) { + if (true === $this->callPhing('sql', array('propel.packageObjectModel' => true))) { $filesystem = new Filesystem(); $basePath = $this->getApplication()->getKernel()->getRootDir(). DIRECTORY_SEPARATOR . 'propel'. DIRECTORY_SEPARATOR . 'sql'; $sqlMap = file_get_contents($basePath . DIRECTORY_SEPARATOR . 'sqldb.map');