Doctrine\DBAL\Platforms\MySqlPlatform::getDropPrimaryKeySQL PHP Method

getDropPrimaryKeySQL() protected method

protected getDropPrimaryKeySQL ( string $table ) : string
$table string
return string
    protected function getDropPrimaryKeySQL($table)
    {
        return 'ALTER TABLE ' . $table . ' DROP PRIMARY KEY';
    }
MySqlPlatform