Commit 1a990b6e authored by zYne's avatar zYne

fixed version column attributes

parent ee1cf101
......@@ -89,7 +89,9 @@ class Doctrine_AuditLog extends Doctrine_Plugin
}
// the version column should be part of the primary key definition
$columns[$this->_options['versionColumn']]['primary'] = true;
$columns[$this->_options['versionColumn']] = array('type' => 'integer',
'length' => 8,
'primary' => true);
$id = $table->getIdentifier();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment