fix index drop on pg

This commit is contained in:
Brion Vibber 2010-10-19 12:23:49 -07:00
parent e07254d15b
commit aeb1c23a2f
1 changed files with 14 additions and 0 deletions

View File

@ -334,6 +334,20 @@ class PgsqlSchema extends Schema
}
}
/**
* Append an SQL statement to drop an index from a table.
* Note that in PostgreSQL, index names are DB-unique.
*
* @param array $statements
* @param string $table
* @param string $name
* @param array $def
*/
function appendDropIndex(array &$statements, $table, $name)
{
$statements[] = "DROP INDEX $name";
}
/**
* Quote a db/table/column identifier if necessary.
*