public function Schema::createTableSql

Same name in this branch
  1. 8.x drupal/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php \Drupal\Core\Database\Driver\mysql\Schema::createTableSql()
  2. 8.x drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php \Drupal\Core\Database\Driver\sqlite\Schema::createTableSql()
  3. 8.x drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php \Drupal\Core\Database\Driver\pgsql\Schema::createTableSql()

Generate SQL to create a new table from a Drupal schema definition.

Parameters

$name: The name of the table to create.

$table: A Schema API table definition array.

Return value

An array of SQL statements to create the table.

File

drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php, line 48
Definition of Drupal\Core\Database\Driver\sqlite\Schema

Class

Schema

Namespace

Drupal\Core\Database\Driver\sqlite

Code

public function createTableSql($name, $table) {
  $sql = array();
  $sql[] = "CREATE TABLE {" . $name . "} (\n" . $this
    ->createColumsSql($name, $table) . "\n);\n";
  return array_merge($sql, $this
    ->createIndexSql($name, $table));
}