Open
Description
Bug Report
Q | A |
---|---|
BC Break | no |
Version | 2.9.2 |
Summary
I'm currently working on a project with multiple databases so I specifies schema in my @table.
Current behaviour
doctrine:migration:diff`generates a migration file, but up() does not use "schema"
How to reproduce
Create an entity like this.
/**
Generate a diff on an existing table
Output is (simplified):
public function up(Schema $schema) : void
{
$this->addSql('ALTER TABLE tiny_elephant ADD name VARCHAR(255) DEFAULT NULL');
}
public function down(Schema $schema) : void
{
$this->addSql('ALTER TABLE sf.tiny_elephant DROP name');
}
Expected behaviour
Using schema in up() too.
public function up(Schema $schema) : void
{
$this->addSql('ALTER TABLE sf.tiny_elephant ADD name VARCHAR(255) DEFAULT NULL');
}
The issue is diff is made only from the schema and mysql do not supports "namespaces".
Regards.