Commit d60db7a9 authored by meus's avatar meus

fixing the reason for #589, a typo in the docs :P

parent c1334036
...@@ -48,7 +48,7 @@ class File extends Doctrine_Record ...@@ -48,7 +48,7 @@ class File extends Doctrine_Record
{ {
$this->hasColumn('id', 'integer', 4, array('notnull' => true, $this->hasColumn('id', 'integer', 4, array('notnull' => true,
'primary' => true, 'primary' => true,
'unsigned' > true, 'unsigned' => true,
'autoincrement' => true)); 'autoincrement' => true));
$this->hasColumn('name', 'string', 150); $this->hasColumn('name', 'string', 150);
$this->hasColumn('size', 'integer', 8); $this->hasColumn('size', 'integer', 8);
......
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