Skip to content

Commit

Permalink
Merge pull request #4598 from morozov/issues/4503
Browse files Browse the repository at this point in the history
[GH-4503] Make OracleSchemaManager::dropAutoincrement() protected
  • Loading branch information
morozov committed Apr 10, 2021
2 parents 88198d6 + 384cbf7 commit 6d84afd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Schema/OracleSchemaManager.php
Expand Up @@ -265,11 +265,9 @@ public function createDatabase(string $database): void
}

/**
* @internal The method should be only used from within the OracleSchemaManager class hierarchy.
*
* @throws Exception
*/
public function dropAutoincrement(string $table): bool
protected function dropAutoincrement(string $table): bool
{
assert($this->_platform instanceof OraclePlatform);

Expand Down

0 comments on commit 6d84afd

Please sign in to comment.