15

だから私はDoctrine2の移行(https://github.com/doctrine/migrations)をたくさん行いましたが、私がやろうとしている新しい移行について質問があります。

ライブラリを少し掘り下げてみましたが、$this->addSql()実行するSQLのリストを作成するために使用され、後で実行されることがわかりました。

いくつかのデータを選択し、行を反復処理し、それに基づいて新しいデータを挿入してから、選択したデータを削除するということをしたかったのです。protected $connectionこれはDBALライブラリに非常に簡単に役立ちますが、移行で安全に使用できるかどうか疑問に思っています。$this->addSql()それとも、 SQLが実行される前にステートメントを実行するので、それは悪いことですか?dry-runまた、これは私がコードで見たものから設定を壊すようです。このタイプの移行の経験はありますか?ベストプラクティスはありますか?

以下は私がやりたい移行ですが、これがDoctrine移行によってサポートされているとは確信していません。

public function up(Schema $schema)
{
    // this up() migration is autogenerated, please modify it to your needs
    $this->abortIf($this->connection->getDatabasePlatform()->getName() != "mysql");

    $this->addSql("ALTER TABLE article_enclosures ADD is_scrape TINYINT(1) NOT NULL");
    $this->addSql("ALTER TABLE images DROP FOREIGN KEY FK_E01FBE6AA536AAC7");

    // now lets take all images with a scrape and convert the scrape to an enclosure
    // 
    // Select all images where not scrape_id is null (join on article_image_scrape)
    // for each image:
    //     insert into article_enclosures
    //     update image set enclosure_id = new ID
    //     delete from article_image_scrape where id...
    //
    // insert into article_enclosures select article_image_scrapes...

    $sql = "SELECT i.id img_id, e.* FROM images i JOIN article_image_scrapes e ON i.scrape_id = e.id";
    $stmt = $this->connection->prepare($sql);
    $stmt->execute();
    $scrapesToDelete = array();
    while ($row = $stmt->fetch()) {
        $scrapeArticle = $row['article_id'];
        $scrapeOldId = $row['id'];
        $scrapeUrl = $row['url'];
        $scrapeExtension = $row['extension'];
        $scrapeUrlHash = $row['url_hash'];
        $imageId = $row['image_id'];

        $this->connection->insert('article_enclosures', array(
            'url' => $scrapeUrl,
            'extension' => $scrapeExtension,
            'url_hash' => $scrapeUrlHash
        ));

        $scrapeNewId = $this->connection->lastInsertId();

        $this->connection->update('images', array(
            'enclosure_id' => $scrapeNewId,
            'scrape_id' => null
        ), array(
            'id' => $imageId
        ));

        $scrapesToDelete[] = $scrapeOldId;
    }

    foreach ($scrapesToDelete as $id) {
        $this->connection->delete('article_image_scrapes', array('id' => $id));
    }

    $this->addSql("INSERT INTO article_scrapes (article_id, url, extension, url_hash) "
            ."SELECT s.id, s.url, s.extension, s.url_hash"
            ."FROM article_image_scrapes s");

    $this->addSql("DROP INDEX IDX_E01FBE6AA536AAC7 ON images");
    $this->addSql("ALTER TABLE images DROP scrape_id, CHANGE enclosure_id enclosure_id INT NOT NULL");
}
4

2 に答える 2

19

あなたは$connectionこのように使うことができます

$result = $this->connection->fetchAssoc('SELECT id, name FROM table1 WHERE id = 1');
$this->abortIf(!$result, 'row with id not found');
$this->abortIf($result['name'] != 'jo', 'id 1 is not jo');
// etc..

ドライランオプションを壊さないように、データベースを読み取るだけで、接続を使用して更新/削除を行わないでください。

あなたの例では、2つの移行を行う必要があります。最初は2つの変更テーブルを実行します。2つ目は、「スクレイプを使用した画像とスクレイプをエンクロージャーに変換する」ルーチンを実行します。複数の移行を使用すると、問題が発生した場合に元に戻すのが簡単になります。

于 2013-09-02T21:08:23.220 に答える
12

参考までに、最新のドキュメントには、「postUp」メソッドを使用するとさらに優れたこの例が示されています

http://symfony.com/doc/current/bundles/DoctrineMigrationsBundle/index.html

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

class Version20130326212938 extends AbstractMigration implements ContainerAwareInterface
{

    private $container;

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

    public function up(Schema $schema)
    {
        // ... migration content
    }

    public function postUp(Schema $schema)
    {
        $em = $this->container->get('doctrine.orm.entity_manager');
        // ... update the entities
    }
}
于 2014-05-12T18:30:58.070 に答える