function dba_show_create_table in Database Administration 7
Same name and namespace in other branches
- 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()
File
- ./
dba.admin.inc, line 595
Code
function dba_show_create_table($table) {
return dba_invoke_driver_specific('show_create_table', $table);
}