1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/models/CPK_Test.php

10 lines
256 B
PHP
Raw Normal View History

<?php
class CPK_Test extends Doctrine_Record {
public function setTableDefinition() {
$this->hasColumn('name', 'string', 255);
}
public function setUp() {
$this->hasMany('CPK_Test2 as Test', 'CPK_Association.test2_id');
}
}