You are here

function dba_show_create_table in Database Administration 7

Same name and namespace in other branches
  1. 5 dba.module \dba_show_create_table()

We can't use drupal_get_schema() as we want what is really in the database.

1 call to dba_show_create_table()
dba_export_table in ./dba.admin.inc

File

./dba.admin.inc, line 595

Code

function dba_show_create_table($table) {
  return dba_invoke_driver_specific('show_create_table', $table);
}