Doctrine\DBAL\Platforms\OraclePlatform::getDropAutoincrementSql PHP Method

getDropAutoincrementSql() public method

Returns the SQL statements to drop the autoincrement for the given table name.
public getDropAutoincrementSql ( string $table ) : array
$table string The table name to drop the autoincrement for.
return array
    public function getDropAutoincrementSql($table)
    {
        $table = $this->normalizeIdentifier($table);
        $autoincrementIdentifierName = $this->getAutoincrementIdentifierName($table);
        $identitySequenceName = $this->getIdentitySequenceName($table->isQuoted() ? $table->getQuotedName($this) : $table->getName(), '');
        return array('DROP TRIGGER ' . $autoincrementIdentifierName, $this->getDropSequenceSQL($identitySequenceName), $this->getDropConstraintSQL($autoincrementIdentifierName, $table->getQuotedName($this)));
    }
OraclePlatform