1 drupal.inc | drupal_schema_fields_sql($table, $prefix = NULL) |
Retrieves a list of fields from a table schema.
Deprecated
since 1.0.0
See also
Related topics
File
- core/
includes/ drupal.inc, line 1471 - Contains constants and function wrappers for Drupal 7.x compatibility.
Code
function drupal_schema_fields_sql($table, $prefix = NULL) {
watchdog_deprecated_function('drupal', __FUNCTION__);
return backdrop_schema_fields_sql($table, $prefix);
}