- Fixed typo in column declarations.
This commit is contained in:
parent
80bb1ed071
commit
0ac4d757c7
1 changed files with 3 additions and 3 deletions
|
@ -66,9 +66,9 @@ class Doctrine_Template_Timestampable extends Doctrine_Template
|
||||||
*/
|
*/
|
||||||
public function setTableDefinition()
|
public function setTableDefinition()
|
||||||
{
|
{
|
||||||
$this->hasColumn($this->_options['created']['name'], $this->_options['created']['type'], null, $this->_options['created']['name']);
|
$this->hasColumn($this->_options['created']['name'], $this->_options['created']['type'], null, $this->_options['created']['options']);
|
||||||
$this->hasColumn($this->_options['updated']['name'], $this->_options['updated']['type'], null, $this->_options['updated']['name']);
|
$this->hasColumn($this->_options['updated']['name'], $this->_options['updated']['type'], null, $this->_options['updated']['options']);
|
||||||
|
|
||||||
$this->addListener(new Doctrine_Template_Listener_Timestampable($this->_options));
|
$this->addListener(new Doctrine_Template_Listener_Timestampable($this->_options));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue