1
0
mirror of synced 2025-03-02 02:43:20 +03:00

10 lines
275 B
PHP
Raw Normal View History

<?php
class NestReference extends Doctrine_Entity
{
public static function initMetadata($class)
{
2008-02-16 19:37:51 +00:00
$class->setColumn('parent_id', 'integer', 4, array('primary' => true));
$class->setColumn('child_id', 'integer', 4, array('primary' => true));
}
}