1.20.x drupal.inc drupal_get_schema($table = NULL, $rebuild = FALSE)

Gets the schema definition of a table, or the whole database schema.

Deprecated

since 1.0.0

See also

backdrop_get_schema()

Related topics

File

includes/drupal.inc, line 437
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_get_schema($table = NULL, $rebuild = FALSE) {
  return backdrop_get_schema($table, $rebuild);
}