1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests_old/models/CategoryNestedSet.php

13 lines
364 B
PHP
Raw Normal View History

2008-01-18 18:27:54 +03:00
<?php
class CategoryNestedSet extends Doctrine_Entity
2008-01-18 18:27:54 +03:00
{
public static function initMetadata($class)
2008-01-18 18:27:54 +03:00
{
$class->setTableName('category_nested_set');
$class->setColumn('id', 'integer', 4, array('primary' => true, 'autoincrement' => true));
$class->setColumn('name', 'string', 255, array('notnull' => true));
2008-01-18 18:27:54 +03:00
$class->actAs('NestedSet');
2008-01-18 18:27:54 +03:00
}
}