| Versionen | |
|---|---|
| drupal7 | public DatabaseSchema_mysql::fieldSetDefault(&$ret, $table, $field, $default) |
includes/
<?php
public function fieldSetDefault(&$ret, $table, $field, $default) {
if (is_null($default)) {
$default = 'NULL';
}
else {
$default = is_string($default) ? "'$default'" : $default;
}
$ret[] = update_sql('ALTER TABLE {' . $table . '} ALTER COLUMN ' . $field . ' SET DEFAULT ' . $default);
}
?>
Kommentare
Kommentar hinzufügen