| Versionen | |
|---|---|
| drupal6 – drupal7 | db_column_exists($table, $column) |
Check if a column exists in the given table.
includes/
<?php
function db_column_exists($table, $column) {
return Database::getConnection()->schema()->columnExists($table, $column);
}
?>
Kommentare
Kommentar hinzufügen