1
0
mirror of synced 2025-01-18 14:31:40 +03:00
doctrine2/tests_old/models/CategoryNestedSet.php

13 lines
364 B
PHP
Raw Normal View History

2008-01-18 15:27:54 +00:00
<?php
class CategoryNestedSet extends Doctrine_Record
{
public static function initMetadata($class)
2008-01-18 15:27:54 +00: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 15:27:54 +00:00
$class->actAs('NestedSet');
2008-01-18 15:27:54 +00:00
}
}