function Schema::dropTable

Drop a table.

Parameters

$table: The table to be dropped.

Return value

bool TRUE if the table was successfully dropped, FALSE if there was no table by that name to begin with.

Overrides Schema::dropTable

1 call to Schema::dropTable()
Schema::alterTable in core/modules/sqlite/src/Driver/Database/sqlite/Schema.php
Create a table with a new schema containing the old content.

File

core/modules/sqlite/src/Driver/Database/sqlite/Schema.php, line 307

Class

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

Namespace

Drupal\sqlite\Driver\Database\sqlite

Code

public function dropTable($table) {
  if (!$this->tableExists($table)) {
    return FALSE;
  }
  $this->connection->tableDropped = TRUE;
  $this->connection
    ->query('DROP TABLE {' . $table . '}');
  return TRUE;
}

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