/**
* Creates the table to store cache items which can be called once for setup.
*
* Cache ID are saved in a column of maximum length 255. Cache data is
* saved in a BLOB.
*
* @throws DBALException When the table already exists
*/
public function createTable(): void
{ $schema =
new Schema();
$this->
addTableToSchema($schema);
foreach ($schema->
toSql($this->conn->
getDatabasePlatform()) as $sql) { $this->conn->
executeStatement($sql);
} } /**
* @param \Closure $isSameDatabase
*/
public function configureSchema(Schema
$schema, Connection
$forConnection/* , \Closure $isSameDatabase */
): void
{