From 1a990b6eaebacf312737a31467e4c21b70161835 Mon Sep 17 00:00:00 2001 From: zYne Date: Thu, 18 Oct 2007 19:39:19 +0000 Subject: [PATCH] fixed version column attributes --- lib/Doctrine/AuditLog.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/AuditLog.php b/lib/Doctrine/AuditLog.php index cb516a900..6f15ff4d6 100644 --- a/lib/Doctrine/AuditLog.php +++ b/lib/Doctrine/AuditLog.php @@ -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();