From 384cbf72234260d25e0b4a477944b33f06db9369 Mon Sep 17 00:00:00 2001 From: Sergei Morozov Date: Fri, 9 Apr 2021 18:37:46 -0700 Subject: [PATCH] [GH-4503] Make OracleSchemaManager::dropAutoincrement() protected --- src/Schema/OracleSchemaManager.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Schema/OracleSchemaManager.php b/src/Schema/OracleSchemaManager.php index 6c862c0004b..87541cf1cc6 100644 --- a/src/Schema/OracleSchemaManager.php +++ b/src/Schema/OracleSchemaManager.php @@ -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);