diff --git a/app/config/migrations.yml b/app/config/migrations.yml new file mode 100644 index 0000000000..dabf28cc79 --- /dev/null +++ b/app/config/migrations.yml @@ -0,0 +1,4 @@ +name: Chamilo Migrations +migrations_namespace: Chamilo\CoreBundle\Migrations\Schema\V110 +table_name: version +migrations_directory: src/Chamilo/CoreBundle/Migrations/Schema/V110 diff --git a/cli-config.php b/cli-config.php index bff3fdccb5..f3398afba4 100644 --- a/cli-config.php +++ b/cli-config.php @@ -37,5 +37,8 @@ $dbParams = array( $database->connect($dbParams, realpath(__DIR__).'/', realpath(__DIR__).'/'); $entityManager = $database->getManager(); -return ConsoleRunner::createHelperSet($entityManager); +$helperSet = ConsoleRunner::createHelperSet($entityManager); +$dialogHelper = new Symfony\Component\Console\Helper\DialogHelper(); +$helperSet->set($dialogHelper); +return $helperSet;