Skip to content

Commit

Permalink
Die NoCheckMigrator
Browse files Browse the repository at this point in the history
  • Loading branch information
VicDeo committed Oct 18, 2017
1 parent 988f75a commit 956a1a7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 35 deletions.
2 changes: 1 addition & 1 deletion lib/private/DB/MDB2SchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function getMigrator() {
} else if ($platform instanceof PostgreSqlPlatform) {
return new PostgreSqlMigrator($this->conn, $random, $config, $dispatcher);
} else {
return new NoCheckMigrator($this->conn, $random, $config, $dispatcher);
return new Migrator($this->conn, $random, $config, $dispatcher);
}
}

Expand Down
33 changes: 0 additions & 33 deletions lib/private/DB/NoCheckMigrator.php

This file was deleted.

2 changes: 1 addition & 1 deletion lib/private/DB/OracleMigrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
use Doctrine\DBAL\Schema\Schema;
use Doctrine\DBAL\Schema\Table;

class OracleMigrator extends NoCheckMigrator {
class OracleMigrator extends Migrator {

/**
* Quote a column's name but changing the name requires recreating
Expand Down

0 comments on commit 956a1a7

Please sign in to comment.