You are here

protected function Schema::processField in Drupal 8

Same name in this branch
  1. 8 core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php \Drupal\Core\Database\Driver\sqlite\Schema::processField()
  2. 8 core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php \Drupal\Core\Database\Driver\pgsql\Schema::processField()
  3. 8 core/lib/Drupal/Core/Database/Driver/mysql/Schema.php \Drupal\Core\Database\Driver\mysql\Schema::processField()
Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php \Drupal\Core\Database\Driver\sqlite\Schema::processField()

Set database-engine specific properties for a field.

Parameters

$field: A field description array, as specified in the schema documentation.

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

File

core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php, line 130

Class

Schema
SQLite implementation of \Drupal\Core\Database\Schema.

Namespace

Drupal\Core\Database\Driver\sqlite

Code

protected function processField($field) {
  if (!isset($field['size'])) {
    $field['size'] = 'normal';
  }

  // Set the correct database-engine specific datatype.
  // In case one is already provided, force it to uppercase.
  if (isset($field['sqlite_type'])) {
    $field['sqlite_type'] = mb_strtoupper($field['sqlite_type']);
  }
  else {
    $map = $this
      ->getFieldTypeMap();
    $field['sqlite_type'] = $map[$field['type'] . ':' . $field['size']];

    // Numeric fields with a specified scale have to be stored as floats.
    if ($field['sqlite_type'] === 'NUMERIC' && isset($field['scale'])) {
      $field['sqlite_type'] = 'FLOAT';
    }
  }
  if (isset($field['type']) && $field['type'] == 'serial') {
    $field['auto_increment'] = TRUE;
  }
  return $field;
}