Commit 852efdf3 authored by romanb's avatar romanb

Added a missing test model.

parent 7e4875f4
<?php
class CategoryNestedSet extends Doctrine_Record
{
public function setTableDefinition()
{
$this->setTableName('category_nested_set');
$this->hasColumn('id', 'integer', 4, array('primary' => true, 'autoincrement' => true));
$this->hasColumn('name', 'string', 255, array('notnull' => true));
$this->actAs('NestedSet');
}
public function setUp()
{
}
}
\ No newline at end of file
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