You are here

protected function Schema::getTechnicalPrimaryKeyIndexName in Drupal driver for SQL Server and SQL Azure 8.2

1 call to Schema::getTechnicalPrimaryKeyIndexName()
Schema::createTechnicalPrimaryColumn in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Make sure that this table has a technical primary key.

File

drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php, line 66
Definition of Drupal\Driver\Database\sqlsrv\Schema

Class

Schema

Namespace

Drupal\Driver\Database\sqlsrv

Code

protected function getTechnicalPrimaryKeyIndexName($table) {
  return "{$table}_pkey_technical";
}