如何编写可以将数据重新分配到新表的Doctrine迁移

时间:2014-05-19 21:30:23

标签: php symfony doctrine-orm doctrine-migrations

我有一个数据库(实际上是在Symfony1应用程序中使用Propel创建的)。我在Symfony2和Doctrine中重新实现它,但我也想借此机会在某种程度上重构数据库。

我已经定义了一组Doctrine实体并运行了doctrine:migrations:diff,它为我创建了一个基本的迁移来添加表,列和约束,并删除了一堆列。

但是,在删除这些列之前,我想将数据复制到一些新表中,然后将这些表中的新记录链接到第一个表中的新列。我不相信它可以在纯SQL中执行此操作(通常,一个表的内容分布在三个或四个表中)。

This给了我一个提示,让我找到了this(我已经跳过了,因为我不知道有什么相关性"容器"可能是我的问题) 。

但是我在Symfony或Doctrine文档中没有找到的是在迁移中实际移动数据的一个例子 - 这对我来说似乎是迁移的核心目的之一!

我可以使用上面这些链接中的提示,但后来我不确定如何继续。我没有(并且并非真的想花时间去创建,虽然我确定我能做到)现有数据库模式的Doctrine实体:我可以使用DQL吗?我根本就不知道。

所以有两个问题:

  1. 有人能举例说明一个在表之间移动数据的Doctrine迁移吗?

  2. 或者,任何人都可以澄清DQL的语法对Doctrine中实体的定义有多依赖?我可以使用它来指定不在实体定义中的列吗?

1 个答案:

答案 0 :(得分:20)

好吧,我似乎已经从许多来源(包括this)和反复试验找到了它。

Cerad的评论有点帮助,但主要是我通过使用DBAL层读取数据(我可以通过$this->connection获取)和ORM来保存新数据(这需要EntityManager,所以我必须使用容器的技巧)。

我将所有代码放在postUp()中,包括生成的代码以从表中删除列。

我的代码的示例位:

use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

use PG\InventoryBundle\Entity\Item;
use PG\InventoryBundle\Entity\Address;
         .
         .
         .

/**
 * Auto-generated Migration: Please modify to your needs!
 */
class Version20140519211228 extends AbstractMigration implements ContainerAwareInterface
{
  private $container;

  public function setContainer(ContainerInterface $container = null)
  {
    $this->container = $container;
  }

  public function up(Schema $schema)
  {
         .
         .
         .
  }
}

public function postUp(Schema $schema)
{
    $em = $this->container->get('doctrine.orm.entity_manager');
    // ... update the entities
    $query = "SELECT * FROM item";
    $stmt = $this->connection->prepare($query);
    $stmt->execute();

    // We can't use Doctrine's ORM to fetch the item, because it has a load of extra fields
    // that aren't in the entity definition.
    while ($row = $stmt->fetch()) {
      // But we will also get the entity, so that we can put addresses in it.
      $id = $row['id'];
      $item = $em->getRepository('PGInventoryBundle:Item')->find($id);
      // And create new objects
      $stock = new Stock();
         .
         .
         .

      $stock->setAssetNo($row['asset_no']);
      $stock->setItemId($row['id']);
      $em->persist($stock);

      $em->flush();
    }

    // Now we can drop fields we don't need. 
    $this->connection->executeQuery("ALTER TABLE item DROP container_id");
    $this->connection->executeQuery("ALTER TABLE item DROP location_id");
         .
         .
         .

 }