1
0
mirror of synced 2025-01-05 16:53:21 +03:00
doctrine2/models/RelationTest.php

11 lines
207 B
PHP
Raw Normal View History

<?php
class RelationTest extends Doctrine_Record
{
public function setTableDefinition()
{
$this->hasColumn('name', 'string', 200);
$this->hasColumn('child_id', 'integer');
}
}