我想在Doctrine Create Schema Event中将一些记录插入数据库(一些用于外键约束的默认数据)。
通过触发命令行(在Symfony2中)调用此函数:
php app/console doctrine:schema:update --force
运行此命令时,Doctrine2会为数据库生成架构。
有没有办法对此进行反应并将数据插入数据库?
谢谢!
答案 0 :(得分:2)
创建新的Console Command将实现您的目标。
命令代码
MyCool /捆绑/命令/ GenerateSchemaUpdateCommand.php
<?php
namespace MyCool\Bundle\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class GenerateSchemaUpdateCommand extends ContainerAwareCommand
{
/**
* Configure command, set parameters definition and help.
*/
protected function configure()
{
$this
->setName('mycoolbundle:schema:update')
->setDescription('Perform my custom schema update.')
->setHelp(sprintf(
'Performs the doctrine:schema:update plus adds our custom records. \n' .
PHP_EOL
));
}
/**
* Execution Code
* @param \Symfony\Component\Console\Input\InputInterface $input
* @param \Symfony\Component\Console\Output\OutputInterface $output
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$output = system('php -f app/console doctrine:schema:update --force');
// do your custom things here.
echo $output;
}
}
执行命令
php -f app/console mycoolbundle:schema:update
添加参数
您可以使用以下方法为命令添加参数:
addArgument('var_name', InputArgument::OPTIONAL, 'Help message...')
// InputArgument::REQUIRED is also available here
备注强>
这样做可以让您为控制台命令添加很多功能,而且如果您选择需要它们,您还可以直接访问模型和实体。
答案 1 :(得分:1)
它可以帮助您加载初始数据。