Commit 1f689ae9 authored by jackbravo's avatar jackbravo

Syntax error correction

parent 46e5a0d2
...@@ -358,8 +358,10 @@ class Entity extends Doctrine_Record ...@@ -358,8 +358,10 @@ class Entity extends Doctrine_Record
// this column is used for column // this column is used for column
// aggregation inheritance // aggregation inheritance
$this->hasColumn('type', 'integer', 11); $this->hasColumn('type', 'integer', 11);
$this->setSubclasses("User" => array("type" => 1"), "Group" => $this->setSubclasses(array(
array("type" => 2)); "User" => array("type" => 1),
"Group" => array("type" => 2)
));
} }
} }
......
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