You are here

public function Schema::resetColumnInformation in Drupal driver for SQL Server and SQL Azure 3.0.x

Unset cached table schema.

15 calls to Schema::resetColumnInformation()
Schema::addField in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Add a new field to a table.
Schema::addIndex in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Add an index.
Schema::addPrimaryKey in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Add a primary key.
Schema::addUniqueKey in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Add a unique key.
Schema::changeField in drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php
Change a field definition.

... See full list

File

drivers/lib/Drupal/Driver/Database/sqlsrv/Schema.php, line 991

Class

Schema

Namespace

Drupal\Driver\Database\sqlsrv

Code

public function resetColumnInformation($table) {
  unset($this->columnInformation[$table]);
}