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

10 lines
229 B
PHP

<?php
class NestedSetTest_SingleRootNode extends Doctrine_Record {
public function setTableDefinition() {
$this->actAs('NestedSet');
$this->hasColumn('name', 'string', 50, array('notnull'));
}
}