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

10 lines
238 B
PHP
Raw Normal View History

<?php
class NestedSetTest_SingleRootNode extends Doctrine_Entity {
public static function initMetadata($class) {
$class->actAs('NestedSet');
$class->setColumn('name', 'string', 50, array('notnull'));
}
}