次のように作成されたテーブルを持つ既存のPostgreSQLデータベースがありました。
CREATE TABLE product (id SERIAL PRIMARY KEY, name VARCHAR(100) DEFAULT NULL)
このテーブルは、Symfony2プロジェクト内のYMLDoctrine2ファイルで説明されています。
Acme\DemoBundle\Entity\Product:
type: entity
table: product
fields:
id:
id: true
type: integer
nullable: false
generator:
strategy: SEQUENCE
name:
type: string
length: 100
nullable: true
Doctrine Migrations diffタスクを初めて実行するとき、up
anddown
メソッドにデータがないバージョン管理ファイルを取得する必要があります。しかし、代わりに私が得るのはこれです:
// ...
class Version20120807125808 extends AbstractMigration
{
public function up(Schema $schema)
{
// this up() migration is autogenerated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() != "postgresql");
$this->addSql("ALTER TABLE product ALTER id DROP DEFAULT");
}
public function down(Schema $schema)
{
// this down() migration is autogenerated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() != "postgresql");
$this->addSql("CREATE SEQUENCE product_id_seq");
$this->addSql("SELECT setval('product_id_seq', (SELECT MAX(id) FROM product))");
$this->addSql("ALTER TABLE product ALTER id SET DEFAULT nextval('product_id_seq')");
}
}
なぜ違いが検出されるのですか?どうすればこれを回避できますか?私はいくつかのシーケンス戦略を試しましたが、成功しませんでした。