protected function Schema::createFieldSql

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

Create an SQL string for a field to be used in table creation or alteration.

Before passing a field out of a schema definition into this function it has to be processed by db_processField().

Parameters

$name: Name of the field.

$spec: The field specification, as per the schema data structure format.

2 calls to Schema::createFieldSql()
Schema::addField in drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php
Add a new field to a table.
Schema::createColumsSql in drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php
Build the SQL expression for creating columns.

File

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

Class

Schema

Namespace

Drupal\Core\Database\Driver\sqlite

Code

protected function createFieldSql($name, $spec) {
  if (!empty($spec['auto_increment'])) {
    $sql = $name . " INTEGER PRIMARY KEY AUTOINCREMENT";
    if (!empty($spec['unsigned'])) {
      $sql .= ' CHECK (' . $name . '>= 0)';
    }
  }
  else {
    $sql = $name . ' ' . $spec['sqlite_type'];
    if (in_array($spec['sqlite_type'], array(
      'VARCHAR',
      'TEXT',
    )) && isset($spec['length'])) {
      $sql .= '(' . $spec['length'] . ')';
    }
    if (isset($spec['not null'])) {
      if ($spec['not null']) {
        $sql .= ' NOT NULL';
      }
      else {
        $sql .= ' NULL';
      }
    }
    if (!empty($spec['unsigned'])) {
      $sql .= ' CHECK (' . $name . '>= 0)';
    }
    if (isset($spec['default'])) {
      if (is_string($spec['default'])) {
        $spec['default'] = "'" . $spec['default'] . "'";
      }
      $sql .= ' DEFAULT ' . $spec['default'];
    }
    if (empty($spec['not null']) && !isset($spec['default'])) {
      $sql .= ' DEFAULT NULL';
    }
  }
  return $sql;
}