Skip to content

Commit 5b2c0f4

Browse files
committed
fixup! feat(ISchemaWrapper): Add method to remove an autoincrement and cleanup
1 parent 193c119 commit 5b2c0f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/private/DB/SchemaWrapper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ public function performDropTableCalls(): void {
5050
$platform = $this->getDatabasePlatform();
5151
if ($platform instanceof OraclePlatform) {
5252
foreach ($this->autoincrementsToDelete as $tableName) {
53-
/** @psalm-suppress InternalMethod */
54-
$platform->getDropAutoincrementSql($tableName);
53+
///** @psalm-suppress InternalMethod */
54+
//$platform->getDropAutoincrementSql($tableName);
5555
}
5656
$this->autoincrementsToDelete = [];
5757
}

0 commit comments

Comments
 (0)