function Schema::_createIndexSql

Same name and namespace in other branches
  1. 11.x core/modules/pgsql/src/Driver/Database/pgsql/Schema.php \Drupal\pgsql\Driver\Database\pgsql\Schema::_createIndexSql()

File

core/modules/pgsql/src/Driver/Database/pgsql/Schema.php, line 1006

Class

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

Namespace

Drupal\pgsql\Driver\Database\pgsql

Code

protected function _createIndexSql($table, $name, $fields) {
  $query = 'CREATE INDEX ' . $this->ensureIdentifiersLength($table, $name, 'idx') . ' ON {' . $table . '} (';
  $query .= $this->_createKeySql($fields) . ')';
  return $query;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.