Creates a new table from a Drupal table definition.
$name: The name of the table to create.
$table: A Schema API table definition array.
function db_create_table($name, $table) {
return Database::getConnection()
->schema()
->createTable($name, $table);
}