Skip to content

Migrations up() do not respect "schema" annotation variable #3482

Open
@guillaume-a

Description

@guillaume-a

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.

/**

  • @Orm\Entity(repositoryClass="App\Repository\TinyElephantRepository")
  • @Orm\Table(schema="sf")
    */
    class TinyElephant

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.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions