[Cache] fix doctrine deprecation

This commit is contained in:
Nicolas Grekas 2017-12-08 17:10:40 +01:00
parent 41e69782dc
commit 50644d0d58

View File

@ -99,7 +99,7 @@ trait PdoTrait
$table->addColumn($this->idCol, $types[$this->driver], array('length' => 255));
$table->addColumn($this->dataCol, 'blob', array('length' => 16777215));
$table->addColumn($this->lifetimeCol, 'integer', array('unsigned' => true, 'notnull' => false));
$table->addColumn($this->timeCol, 'integer', array('unsigned' => true, 'foo' => 'bar'));
$table->addColumn($this->timeCol, 'integer', array('unsigned' => true));
$table->setPrimaryKey(array($this->idCol));
foreach ($schema->toSql($conn->getDatabasePlatform()) as $sql) {