Symfony doctrine在迁移中设置数据库名称

时间:2014-11-20 08:47:02

标签: php doctrine symfony-1.4

我希望仅针对特定数据库执行迁移(存在多个数据库)。

public function up()
{
    $this->addColumn('user', 'tests', 'string', array('length' => '255'));
}

我尝试设置:

public function up()
{
    $this->addColumn('database.user', 'tests', 'string', array('length' => '255'));
}

但它不起作用,symfony尝试为所有数据库执行此迁移:)

如何设置数据库名称?

0 个答案:

没有答案